diff options
author | mattkae <mattkae@protonmail.com> | 2022-09-11 15:39:17 -0400 |
---|---|---|
committer | mattkae <mattkae@protonmail.com> | 2022-09-11 15:39:17 -0400 |
commit | ba3e1638f5cf2fdd58273fe844afcd4a55cf54ca (patch) | |
tree | 60a9bfd57cc5daab7c30570431d7ac95f7a0fb8e | |
parent | 2fbae114a3e6747346717b144196ad6fd09f11eb (diff) |
Enfocing flyspell hunspell
-rw-r--r-- | lisp/text.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/text.el b/lisp/text.el index 5e67c39..feb6535 100644 --- a/lisp/text.el +++ b/lisp/text.el @@ -8,5 +8,7 @@ ) (add-hook 'text-mode-hook 'setup-text-mode) +(setq ispell-program-name (executable-find "hunspell") + ispell-dictionary "en_US") (provide 'text) ;; text.el ends here |