From 4e93a40717cf50b5214c11d07cc455fd23054bdb Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Wed, 17 Apr 2024 12:12:59 +0100 Subject: [PATCH] package: add to package-archives in config step --- init.el | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/init.el b/init.el index e4aee1b..3ecae81 100644 --- a/init.el +++ b/init.el @@ -7,9 +7,6 @@ ;; Configure packages archives with priority (use-package package - :init - (add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/")) - (add-to-list 'package-archives '("stable" . "https://stable.melpa.org/packages/")) :custom (package-archive-priorities '(("melpa" . 10) ("stable" . 5) ("nongnu" . 5) ("gnu" . 0))) (package-selected-packages @@ -46,6 +43,8 @@ elfeed elfeed-org elfeed-tube elfeed-tube-mpv )) :config + (add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/")) + (add-to-list 'package-archives '("stable" . "https://stable.melpa.org/packages/")) (package-initialize)) (setq custom-file (locate-user-emacs-file "custom.el"))