Created
July 2, 2013 16:09
-
-
Save cbilson/5910672 to your computer and use it in GitHub Desktop.
Getting aspell working on windows
This file contains 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
(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