diff --git a/README.md b/README.md index a8168b7..9697088 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/early-init.el b/early-init.el index 1e5e76d..0b674b0 100644 --- a/early-init.el +++ b/early-init.el @@ -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)