Skip to content

Latest commit

 

History

History
28 lines (24 loc) · 1.04 KB

starter-kit-aspell.org

File metadata and controls

28 lines (24 loc) · 1.04 KB

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.

  • This file is loaded by a special line added to starter-kit.org.
  • NB: Flyspell is sometimes very slow on Emacs 23.

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-6.0-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)