summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2022-07-11 07:08:29 +0300
committerLars Wirzenius <liw@liw.fi>2022-07-11 07:08:29 +0300
commite416e8a76864587aef634fd3043ab542cd7cc670 (patch)
tree33478ae247fbbaf1528bb62298e157819fd6fa86
parent48c195c3a1a3efbc7b9e7077f7a31045f1259096 (diff)
downloadliw-dot-files-e416e8a76864587aef634fd3043ab542cd7cc670.tar.gz
emacs: set default ispell dictionary
Sponsored-by: author
-rw-r--r--emacs.d/init.el3
1 files changed, 3 insertions, 0 deletions
diff --git a/emacs.d/init.el b/emacs.d/init.el
index b60b2d8..16ddc91 100644
--- a/emacs.d/init.el
+++ b/emacs.d/init.el
@@ -229,6 +229,9 @@
:height 130
:family "Hack")
+;; Set default dictionary.
+(setq ispell-dictionary "en_US")
+
;; Turn on flyspell spell checking.
(require 'flyspell)
(add-hook 'text-mode-hook 'flyspell-mode)