Trying to use Flyspell with LaTeX files. Setup looks like this:
(require 'ispell)
(setq ispell-program-name "/usr/local/bin/hunspell") ;; From Homebrew, version 1.4.1
(add-to-list 'ispell-local-dictionary-alist '("de_DE_OLDSPELL" "[[:alpha:]]" "[^[:alpha:]]" "[']" t ("-d" "de_DE_OLDSPELL") nil iso-8859-1))
(setq ispell-dictionary "de_DE_OLDSPELL")
(add-hook 'text-mode-hook 'turn-on-flyspell)
Won't load automatically when opening a text (or LaTeX) file, but works fine when loaded manually. How to get Flyspell to load automatically? Probably a simple answer, but I've been going in circles for a while with this.