about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorDavid Morgan <djm_uk@protonmail.com>2024-11-08 16:10:11 +0000
committerDavid Morgan <djm_uk@protonmail.com>2024-11-08 16:10:11 +0000
commitf3f4edd75040e8633048c6696c2e9343774d1346 (patch)
tree1b3b9549b66d90043fda30f7ea40323785317585
parenta1545d1a841ddeb7f41ff14b801afadf068268f8 (diff)
downloaddotfiles-f3f4edd75040e8633048c6696c2e9343774d1346.tar.gz
Add correct version of flyspell changes HEAD master
-rw-r--r--.emacs.d/lisp/init-editor.el4
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))