Skip to content

Instantly share code, notes, and snippets.

@cevaris
Created March 13, 2015 03:39
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 cevaris/fe39c13738cd97cd9743 to your computer and use it in GitHub Desktop.
Save cevaris/fe39c13738cd97cd9743 to your computer and use it in GitHub Desktop.
Setup spell checking in Emacs on Mac OS X
;; ispell
(dolist (hook '(text-mode-hook))
(add-hook hook (lambda () (flyspell-mode 1))))
(setq ispell-program-name "/usr/local/Cellar/ispell/3.3.02/bin/ispell")
# First install ispell
brew install ispell --with-lang-en
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment