aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom Willemse2026-05-29 11:54:33 -0700
committerGravatar Tom Willemse2026-05-29 11:54:33 -0700
commit3c9ba0dc232eb1a017622e9dc4d8660aed229773 (patch)
tree9f6692bba67c3fbff6a6e7dcd60e9b2ca128dea8
parentee91612780cdccd960dc875243231cb92dbc4dd5 (diff)
downloadnew-dotfiles-3c9ba0dc232eb1a017622e9dc4d8660aed229773.tar.gz
new-dotfiles-3c9ba0dc232eb1a017622e9dc4d8660aed229773.zip
Emacs: Add MELPA package archive
-rw-r--r--emacs/.config/emacs/init.org8
1 files changed, 8 insertions, 0 deletions
diff --git a/emacs/.config/emacs/init.org b/emacs/.config/emacs/init.org
index e42aa05..b7e501e 100644
--- a/emacs/.config/emacs/init.org
+++ b/emacs/.config/emacs/init.org
@@ -46,3 +46,11 @@ Now that I can check whether or not I'm typing a word, I can tell =electric-quot
#+end_src
So now that that's settled, I should be writing ='= in words like “shouldn't'' and =’= otherwise. And spellchecking should work just fine.
+
+Add MELPA to package archives, this lets me install more packages.
+
+#+begin_src emacs-lisp
+ (use-package package
+ :config
+ (add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t))
+#+end_src