aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--modules/init-elpa.el18
1 files changed, 9 insertions, 9 deletions
diff --git a/modules/init-elpa.el b/modules/init-elpa.el
index 51f29c8..c43f3e2 100644
--- a/modules/init-elpa.el
+++ b/modules/init-elpa.el
@@ -12,16 +12,16 @@
;; Repositories
;; ================
(setq package-archives
- '(("melpa" . "https://melpa.org/packages/")
- ;;("melpa-stable" . "https://stable.melpa.org/packages/")
- ("gnu" . "https://elpa.gnu.org/packages/")
- ("org" . "https://orgmode.org/elpa/")))
+ '(("GNU ELPA" . "https://elpa.gnu.org/packages/")
+ ("MELPA Stable" . "https://stable.melpa.org/packages/")
+ ("ORG" . "https://orgmode.org/elpa/")
+ ("MELPA" . "https://melpa.org/packages/"))
+ package-archive-priorities
+ '(("MELPA Stable" . 10)
+ ("GNU ELPA" . 5)
+ ("ORG" . 3)
+ ("MELPA" . 0)))
-(setq package-archive-priorities
- '(("melpa" . 4)
- ("melpa-stable" . 0)
- ("gnu" . 1)
- ("org" . 3)))
;; =================
(package-initialize)