aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjjanzen <jjanzen@jjanzen.ca>2025-01-08 18:46:05 -0600
committerjjanzen <jjanzen@jjanzen.ca>2025-01-08 18:46:05 -0600
commit07faa440d28f91fe0b6d007158e251b40588ea3a (patch)
treef3eaf0cd174224befcd25c8ae3ab2a027b9cb886
parent5177af811f41bdf5d3e5cefbb13a09090ce8d507 (diff)
system changes
-rw-r--r--common/.config/emacs/init.el.org9
1 files changed, 4 insertions, 5 deletions
diff --git a/common/.config/emacs/init.el.org b/common/.config/emacs/init.el.org
index 323793a..1654d3e 100644
--- a/common/.config/emacs/init.el.org
+++ b/common/.config/emacs/init.el.org
@@ -285,12 +285,11 @@ Set up =flycheck= and =flyspell= for syntax and spell checking respectively.
(use-package flycheck
:config
(add-hook 'after-init-hook #'global-flycheck-mode))
- (use-package flyspell
- :hook
- (text-mode . flyspell-mode))
(use-package flyspell-correct
- :after flyspell
- :bind (:map flyspell-mode-map ("C-;" . flyspell-correct-wrapper)))
+ :hook
+ (text-mode . flyspell-mode)
+ :bind
+ (:map flyspell-mode-map ("C-;" . flyspell-correct-wrapper)))
#+end_src
Install =yasnippet= for managing snippets and =yasnippet-snippets= for a collection of useful snippets.