lisp/my-dict.el
author Fabien Ninoles <fabien@tzone.org>
Sat, 16 Apr 2016 13:57:38 -0400
changeset 18 f9712f62d202
parent 1 a234a7579958
permissions -rw-r--r--
Add mounted path.

;;; ISpell configuration
(setq ispell-local-dictionary-alist
      (append ispell-local-dictionary-alist
	      (quote ("francais-intl"
		      "[A-Za-zÀÂÆÇÈÉÊËÎÏÔÙÛÜŒÑæàâçèéêëîïôùûüœñ]" 
		      "[^A-Za-zÆÀÂÇÈÉÊËÎÏÔÙÛÜÑŒæàâçèéêëîïôùûüœñ]"
		      "[-']"
		      nil 
		      ("-d" "french") 
		      "~list" iso-8859-15))))

(provide 'my-dict)