From c5b09b3a1400b1f2c2905e7cd5590465db9381d5 Mon Sep 17 00:00:00 2001 From: James Cherti <60946298+jamescherti@users.noreply.github.com> Date: Thu, 13 Mar 2025 17:55:33 -0400 Subject: [PATCH] Remove MELPA stable --- README.md | 3 +++ early-init.el | 1 - 2 files changed, 3 insertions(+), 1 deletion(-) 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)