Skip to content

Latest commit

 

History

History
27 lines (23 loc) · 1015 Bytes

starter-kit-aspell.org

File metadata and controls

27 lines (23 loc) · 1015 Bytes

Starter Kit aspell

This is part of the Emacs Starter Kit.

Starter Kit aspell

Hackish file to accommodate having cocoaAspell installed on your Mac. Otherwise flyspell doesn’t start properly. Putting this customization in <username>.org initiates it too late.

Specify aspell

(setq ispell-program-name "aspell"
      ispell-dictionary "english"
      ispell-dictionary-alist
      (let ((default '("[A-Za-z]" "[^A-Za-z]" "[']" nil
                       ("-B" "-d" "english" "--dict-dir"
                        "~/Library/Application Support/cocoAspell/aspell6-en-7.1-0")
                       nil iso-8859-1)))
        `((nil ,@default)
          ("english" ,@default))))
(setq ispell-extra-args '("--sug-mode=ultra"))
(setq ispell-personal-dictionary "~/.aspell.en.pws")
(setq flyspell-issue-message-flag nil)