lisp/my-dict.el
author Fabien Ninoles <fabien@tzone.org>
Sat, 03 Jan 2015 11:21:56 -0500
changeset 10 449bcf8e92c2
parent 1 a234a7579958
permissions -rw-r--r--
Add the Hira binding.

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