diff options
author | jjanzen <jjanzen@jjanzen.ca> | 2025-03-15 08:57:52 -0500 |
---|---|---|
committer | jjanzen <jjanzen@jjanzen.ca> | 2025-03-15 08:57:52 -0500 |
commit | a62632b3ac90daaa9e2bc1c63828b7caed888ef4 (patch) | |
tree | d7001bb317e55cb3a63fbcce2776f5b2233d7a2b /common/.config/emacs/init.el.org | |
parent | 0b61f86ab9d3ffc685b465bf054ed4aa9c4c71fb (diff) |
system changes
Diffstat (limited to 'common/.config/emacs/init.el.org')
-rw-r--r-- | common/.config/emacs/init.el.org | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/.config/emacs/init.el.org b/common/.config/emacs/init.el.org index 34a6f7e..0df73a0 100644 --- a/common/.config/emacs/init.el.org +++ b/common/.config/emacs/init.el.org @@ -458,8 +458,8 @@ Set up =flycheck= and =flyspell= for syntax and spell checking respectively. :config (add-hook 'after-init-hook #'global-flycheck-mode)) - (require 'flyspell) - (add-hook 'text-mode-hook #'flyspell-mode) + (eval-after-load "flyspell" '(add-hook 'text-mode-hook #'flyspell-mode)) + (use-package flyspell-correct :after flyspell :bind |