diff options
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 267f5e3..ffcd1b0 100644 --- a/common/.config/emacs/init.el.org +++ b/common/.config/emacs/init.el.org @@ -332,10 +332,10 @@ Set up =flycheck= and =flyspell= for syntax and spell checking respectively. (use-package flycheck :config (add-hook 'after-init-hook #'global-flycheck-mode)) + + (add-hook text-mode-hook #'flyspell-mode) (use-package flyspell-correct :after flyspell - :hook - (text-mode . flyspell-mode) :bind (:map flyspell-mode-map ("C-;" . flyspell-correct-wrapper))) #+end_src |