aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorjjanzen <jjanzen@jjanzen.ca>2025-03-15 09:27:59 -0500
committerjjanzen <jjanzen@jjanzen.ca>2025-03-15 09:27:59 -0500
commit72857f841a56b66c0c662d8ebd7b0821996e0915 (patch)
tree2ccb3798a84e625faad342179a6c933a11e9c0b3 /common
parenta62632b3ac90daaa9e2bc1c63828b7caed888ef4 (diff)
system changes
Diffstat (limited to 'common')
-rw-r--r--common/.config/emacs/init.el.org3
1 files changed, 2 insertions, 1 deletions
diff --git a/common/.config/emacs/init.el.org b/common/.config/emacs/init.el.org
index 0df73a0..8f70eb9 100644
--- a/common/.config/emacs/init.el.org
+++ b/common/.config/emacs/init.el.org
@@ -458,7 +458,8 @@ Set up =flycheck= and =flyspell= for syntax and spell checking respectively.
:config
(add-hook 'after-init-hook #'global-flycheck-mode))
- (eval-after-load "flyspell" '(add-hook 'text-mode-hook #'flyspell-mode))
+ (with-eval-after-load 'flyspell
+ (add-hook 'text-mode-hook #'flyspell-mode))
(use-package flyspell-correct
:after flyspell