Created
May 3, 2016 02:09
-
-
Save sondr3/e0dc30c489ed0619ea86a50c81e27907 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(use-package flyspell | |
:config | |
(setq-default ispell-program-name "hunspell") | |
(setq ispell-really-hunspell t | |
ispell-dictionary "en_US" | |
ispell-silently-savep t | |
ispell-local-dictionary-alist | |
'( | |
("en_US" "[[:alpha:]]" "[^[:alpha:]]" "[']" nil nil nil utf-8) | |
("nb_NO" "[[:alpha:]]" "[^[:alpha:]]" "[']" nil nil nil utf-8))) | |
(add-hook 'text-mode-hook #'turn-on-flyspell) | |
(add-hook 'prog-mode-hook #'flyspell-prog-mode)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment