aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjjanzen <jjanzen@jjanzen.ca>2025-01-08 18:54:03 -0600
committerjjanzen <jjanzen@jjanzen.ca>2025-01-08 18:54:03 -0600
commitd7a8adb8899fa9e13fc54557c6e862f926d9ffe6 (patch)
tree4e4d62fb991e1ab5e408f37bda04fc4105b0fe57
parent07faa440d28f91fe0b6d007158e251b40588ea3a (diff)
system changes
-rw-r--r--common/.config/emacs/init.el.org5
1 files changed, 2 insertions, 3 deletions
diff --git a/common/.config/emacs/init.el.org b/common/.config/emacs/init.el.org
index 1654d3e..c43fada 100644
--- a/common/.config/emacs/init.el.org
+++ b/common/.config/emacs/init.el.org
@@ -26,7 +26,7 @@ Suppress native compilation warnings and errors. Native compilation seems to be
(setq native-comp-async-report-warnings-errors 'silent)
#+end_src
-Bootstrap package management. I use =straight= with =use-package= to allow declarative package management and include =git= repositories in addition to =elpa= / =melpa=.
+Bootstrap package management. I use =elpaca= with =use-package= to allow asynchronous declarative package management.
#+begin_src emacs-lisp
(defvar elpaca-installer-version 0.8)
(defvar elpaca-directory (expand-file-name "elpaca/" user-emacs-directory))
@@ -70,7 +70,6 @@ Bootstrap package management. I use =straight= with =use-package= to allow decla
(setq use-package-always-ensure t)
(elpaca elpaca-use-package
- ;; Enable use-package :ensure support for Elpaca.
(elpaca-use-package-mode))
#+end_src
@@ -289,7 +288,7 @@ Set up =flycheck= and =flyspell= for syntax and spell checking respectively.
:hook
(text-mode . flyspell-mode)
:bind
- (:map flyspell-mode-map ("C-;" . flyspell-correct-wrapper)))
+ (:map flyspell-mode-map ("C-;" . flyspell-correct-word)))
#+end_src
Install =yasnippet= for managing snippets and =yasnippet-snippets= for a collection of useful snippets.