This file contains hidden or 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
require 'formula' | |
class Hunspell <Formula | |
url 'http://downloads.sourceforge.net/hunspell/hunspell-1.2.12.tar.gz' | |
homepage 'http://hunspell.sourceforge.net/' | |
md5 '5ef2dc1026660d0ffb7eae7b511aee23' | |
depends_on 'readline' | |
#depends_on 'ncursesw' |
This file contains hidden or 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
;;; Spell checking using hunspell | |
(setq ispell-dictionary-alist | |
'((nil "[A-Za-z]" "[^A-Za-z]" "[']" t | |
("-d" "en_US" "-i" "utf-8") nil utf-8) | |
("american" | |
"[A-Za-z]" "[^A-Za-z]" "[']" nil | |
("-d" "en_US") nil utf-8) | |
("english" | |
"[A-Za-z]" "[^A-Za-z]" "[']" nil | |
("-d" "en_GB") nil utf-8) |
NewerOlder