Skip to content

Instantly share code, notes, and snippets.

@sondr3
Created May 3, 2016 02:09
Show Gist options
  • Save sondr3/e0dc30c489ed0619ea86a50c81e27907 to your computer and use it in GitHub Desktop.
Save sondr3/e0dc30c489ed0619ea86a50c81e27907 to your computer and use it in GitHub Desktop.
(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