system changes

This commit is contained in:
jjanzen 2025-03-05 20:06:07 -06:00
parent 7dae7e0497
commit 42afa86c51

View file

@ -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.