system changes

This commit is contained in:
jjanzen 2025-03-05 20:15:01 -06:00
parent ebb973a2ab
commit 8566ac8524

View file

@ -332,13 +332,13 @@ 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
:defer t)
(use-package flyspell)
(use-package flyspell-correct
:after flyspell
:hook
(text-mode . flyspell-mode)
:init
(define-key flyspell-mode-map (kbd "C-;") #'flyspell-correct-wrapper))
: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.