nixos/home-manager/software/emacs/emacs.d/lib/az_spellcheck.el

8 lines
328 B
EmacsLisp
Raw Normal View History

2022-08-20 17:20:21 +02:00
;; ispell settings
2022-09-01 09:13:18 +02:00
(setenv "DICTIONARY" "en_GB")
2022-08-20 17:20:21 +02:00
(setq ispell-program-name "hunspell")
2022-09-01 09:13:18 +02:00
(setq ispell-local-dictionary "en_GB")
2022-08-20 17:20:21 +02:00
(setq ispell-local-dictionary-alist
2022-09-01 09:13:18 +02:00
'(("en_GB" "[[:alpha:]]" "[^[:alpha:]]" "[']" nil ("-d" "en_GB") nil utf-8)
2022-08-20 17:20:21 +02:00
("de_CH" "[[:alpha:]]" "[^[:alpha:]]" "[']" nil ("-d" "de_CH") nil utf-8)))