Skip to content

Instantly share code, notes, and snippets.

@zarzen
Created October 3, 2016 17:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zarzen/20eacef08869635b56509f844292f2f4 to your computer and use it in GitHub Desktop.
Save zarzen/20eacef08869635b56509f844292f2f4 to your computer and use it in GitHub Desktop.
hunspell

install hunspell

brew install hunspell find the dictionary

en dictionary

then move dictionary to ~/Library/Spelling, thus hunspell can find it. using hunspell -D list search directories.

config at init.el/.spacemacs file

  (if *is-a-mac*
      (progn
        (setq ispell-program-name "hunspell")
        (setq ispell-really-hunspell t)))

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment