summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--emacs/.emacs.d/init.el5
1 files changed, 5 insertions, 0 deletions
diff --git a/emacs/.emacs.d/init.el b/emacs/.emacs.d/init.el
index 8a0549d..0272234 100644
--- a/emacs/.emacs.d/init.el
+++ b/emacs/.emacs.d/init.el
@@ -1533,6 +1533,11 @@ from myaethon2.core.decorators import (
;; (setq special-display-buffer-names
;; '(("*eshell*" (unsplittable . t) (buffer-predicate . my-special-buffer-predicate))))
+(if (not (executable-find "hunspell"))
+ (warn "Hunspell is not installed, can't use it")
+ (setq-default ispell-program-name "hunspell")
+ (setq ispell-really-hunspell t))
+
;;;; End
(provide 'init)