summaryrefslogtreecommitdiffstats
path: root/.emacs.d/init.el
diff options
context:
space:
mode:
Diffstat (limited to '.emacs.d/init.el')
-rw-r--r--.emacs.d/init.el10
1 files changed, 8 insertions, 2 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el
index 3b6c40a..7ced652 100644
--- a/.emacs.d/init.el
+++ b/.emacs.d/init.el
@@ -113,7 +113,12 @@ plain variables. This means that `setopt' will execute any
;; are used, and also to have NonGNU ELPA on older Emacsel as well.
package-archives
'(("gnu" . "https://elpa.gnu.org/packages/")
- ("nongnu" . "https://elpa.nongnu.org/nongnu/"))
+ ("nongnu" . "https://elpa.nongnu.org/nongnu/")
+ ("melpa" . "https://melpa.org/packages/"))
+ package-archive-priorities
+ '(("gnu" . 3)
+ ("nongnu" . 2)
+ ("melpa" . 1))
;; List of the packages I use from GNU ELPA and NonGNU ELPA.
package-selected-packages
'(delight
@@ -121,7 +126,8 @@ plain variables. This means that `setopt' will execute any
elpher
eat
vertico marginalia orderless corfu consult embark embark-consult
- wgrep))
+ wgrep
+ slack))
(unless package-archive-contents
(package-refresh-contents))