about summary refs log tree commit diff stats
path: root/.emacs.d/lisp/init-editor.el
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 /.emacs.d/lisp/init-editor.el
parenta1545d1a841ddeb7f41ff14b801afadf068268f8 (diff)
downloaddotfiles-f3f4edd75040e8633048c6696c2e9343774d1346.tar.gz
Add correct version of flyspell changes
Diffstat (limited to '.emacs.d/lisp/init-editor.el')
-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))
100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156