diff options
author | David Morgan <djm_uk@protonmail.com> | 2024-11-08 16:10:11 +0000 |
---|---|---|
committer | David Morgan <djm_uk@protonmail.com> | 2024-11-08 16:10:11 +0000 |
commit | f3f4edd75040e8633048c6696c2e9343774d1346 (patch) | |
tree | 1b3b9549b66d90043fda30f7ea40323785317585 | |
parent | a1545d1a841ddeb7f41ff14b801afadf068268f8 (diff) | |
download | dotfiles-f3f4edd75040e8633048c6696c2e9343774d1346.tar.gz |
Add correct version of flyspell changes
-rw-r--r-- | .emacs.d/lisp/init-editor.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.emacs.d/lisp/init-editor.el b/.emacs.d/lisp/init-editor.el index 117c491..ce7951c 100644 --- a/.emacs.d/lisp/init-editor.el +++ b/.emacs.d/lisp/init-editor.el @@ -111,11 +111,11 @@ :config (global-flycheck-mode)) -(use-package flyspell +(use-feature flyspell :diminish :config (when (string-suffix-p "aspell" ispell-program-name) - (ispell-extra-args '("--sug-mode=ultra"))) + (setq ispell-extra-args '("--sug-mode=ultra"))) :hook (text-mode . flyspell-mode) (prog-mode . flyspell-prog-mode)) |