Skip to content

Instantly share code, notes, and snippets.

@cbilson
Created July 2, 2013 16:09
Show Gist options
  • Save cbilson/5910672 to your computer and use it in GitHub Desktop.
Save cbilson/5910672 to your computer and use it in GitHub Desktop.
Getting aspell working on windows
(add-to-list 'exec-path "C:\\Program Files (x86)\\Aspell\\bin")
(setq ispell-program-name "aspell.exe")
(setq ispell-aspell-data-dir "C:\\Program Files (x86)\\Aspell\\data")
(setq ispell-aspell-dict-dir "C:\\Program Files (x86)\\Aspell\\dict")
(add-to-list 'ispell-local-dictionary-alist '("en_US" "[[:alpha:]]" "[^[:alpha:]]" "[']" nil
("-B")
nil iso-8859-1))
(setq ispell-personal-dictionary "C:/Users/bilsonc/.ispell")
(require 'ispell)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment