Remove MELPA stable

This commit is contained in:
James Cherti
2025-03-13 17:55:33 -04:00
parent 90d3a48852
commit c5b09b3a14
2 changed files with 3 additions and 1 deletions

View File

@@ -1088,6 +1088,9 @@ Add the following to your `~/.emacs.d/pre-early-init.el` file:
To prioritize MELPA Stable over MELPA (the latest package version), add the following configuration to `~/.emacs.d/post-early-init.el` to ensure packages are fetched from MELPA Stable first:
```elisp
;; Add melpa-stable to `package-archives'
(push '("melpa-stable" . "https://stable.melpa.org/packages/") package-archives)
;; This change increases MELPA Stable priority to 70, above MELPA,
;; ensuring that MELPA is preferred for package installations
;; over MELPA Stable.

View File

@@ -383,7 +383,6 @@ this stage of initialization."
(setq use-package-enable-imenu-support t)
(setq package-archives '(("melpa" . "https://melpa.org/packages/")
("gnu" . "https://elpa.gnu.org/packages/")
("melpa-stable" . "https://stable.melpa.org/packages/")
("nongnu" . "https://elpa.nongnu.org/nongnu/")))
(customize-set-variable 'package-archive-priorities '(("gnu" . 99)
("nongnu" . 80)