about summary refs log tree commit diff stats
path: root/init.el
diff options
context:
space:
mode:
Diffstat (limited to 'init.el')
-rw-r--r--init.el9
1 files changed, 8 insertions, 1 deletions
diff --git a/init.el b/init.el index 00604d0..98b64ab 100644 --- a/init.el +++ b/init.el
@@ -422,7 +422,14 @@ like a dumbass."
422(setup flyspell 422(setup flyspell
423 (setq-default ispell-program-name "hunspell" 423 (setq-default ispell-program-name "hunspell"
424 ispell-dictionary "en_US" 424 ispell-dictionary "en_US"
425 ispell-personal-dictionary "~/.hunspell_personal") 425 ispell-personal-dictionary "~/.hunspell_personal"
426 ispell-local-dictionary-alist '(("en_US"
427 "[[:alpha:]]" "[^[:alpha:]]"
428 "[']" nil
429 ("-d" "en_US") nil utf-8)))
430 (when (boundp 'ispell-hunspell-dictionary-alist)
431 (setq-default
432 ispell-hunspell-dictionary-alist ispell-local-dictionary-alist))
426 (:needs ispell-program-name) ; don't proceed if not installed 433 (:needs ispell-program-name) ; don't proceed if not installed
427 434
428 (unless (file-exists-p ispell-personal-dictionary) 435 (unless (file-exists-p ispell-personal-dictionary)