aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorjjanzen <jjanzen@jjanzen.ca>2025-03-05 20:06:07 -0600
committerjjanzen <jjanzen@jjanzen.ca>2025-03-05 20:06:07 -0600
commit42afa86c51d53e5bd365df7a96424996bda12ae2 (patch)
tree61f1e55a223d89487e59a892e09bb2aebb12facc /common
parent7dae7e04976af9042c39fa5c28c7d8344776a178 (diff)
system changes
Diffstat (limited to 'common')
-rw-r--r--common/.config/emacs/init.el.org6
1 files changed, 2 insertions, 4 deletions
diff --git a/common/.config/emacs/init.el.org b/common/.config/emacs/init.el.org
index b5db39a..0b281eb 100644
--- a/common/.config/emacs/init.el.org
+++ b/common/.config/emacs/init.el.org
@@ -332,13 +332,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)
(use-package flyspell-correct
- :after flyspell
:hook
(text-mode . flyspell-mode)
- :bind
- (:map flyspell-mode-map ("C-;" . flyspell-correct-wrapper)))
+ :init
+ (define-key flyspell-mode-map (kbd "C-;") #'flyspell-correct-wrapper))
#+end_src
Install =yasnippet= for managing snippets and =yasnippet-snippets= for a collection of useful snippets.