summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAlan Pearce2023-03-06 11:08:00 +0100
committerAlan Pearce2023-03-06 21:14:16 +0100
commitdf5cf535ba495ff33df6f79e50c36e83bc029ad9 (patch)
treead2054930cba98835c8b774c4cba23b99012ed5f
parent4f0be7c18202f70d0436c7af54b4f8a8d0b6048a (diff)
downloadnixfiles-df5cf535ba495ff33df6f79e50c36e83bc029ad9.tar.lz
nixfiles-df5cf535ba495ff33df6f79e50c36e83bc029ad9.tar.zst
nixfiles-df5cf535ba495ff33df6f79e50c36e83bc029ad9.zip
Emacs: Set ispell default dictionary to British English
-rw-r--r--user/emacs/init.el2
1 files changed, 2 insertions, 0 deletions
diff --git a/user/emacs/init.el b/user/emacs/init.el
index e85cc800..cb6a2a13 100644
--- a/user/emacs/init.el
+++ b/user/emacs/init.el
@@ -943,6 +943,8 @@ _p_rev       _u_pper              _=_: upper/lower       _r_esolve
 (use-package flyspell
   :ghook 'text-mode-hook
   :hook (prog-mode . flyspell-prog-mode))
+(setq-default ispell-dictionary "en_GB-ise-w_accents")
+(setq ispell-extra-args '("--sug-mode=ultra" "--camel-case"))
 
 (use-package flyspell-correct
   :after flyspell