7 lines
276 B
EmacsLisp
7 lines
276 B
EmacsLisp
;; Highlight misspelled words
|
|
(use-package ispell
|
|
:ensure t
|
|
:config (setq ispell-program-name "aspell")
|
|
(setq ispell-extra-args
|
|
'("--run-together" "--run-together-limit=5" "--run-together-min=2"))
|
|
:hook ((prog-mode text-mode) . flyspell-mode))
|