lisp/my-dict.el
author Fabien Ninoles <fninoles@genvidtech.com>
Mon, 23 Jan 2017 07:21:24 -0500
changeset 20 b0af77bc62ec
parent 1 a234a7579958
permissions -rw-r--r--
Add powershell profile.

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