summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md5
-rw-r--r--lisp/text.el2
2 files changed, 7 insertions, 0 deletions
diff --git a/README.md b/README.md
index 2162052..9db83b4 100644
--- a/README.md
+++ b/README.md
@@ -6,3 +6,8 @@ Emacs configuration file
### JavaScript/TypeScript
Must have installed the Typescript language server: https://github.com/typescript-language-server/typescript-language-server
+### Text
+`hunspell` is used to provide spell check on `.txt` files. Make sure to have install the hunspell package for your language. In my instance, I had to do:
+```sh
+sudo pacman -S hunspell hunspell-en_us
+```
diff --git a/lisp/text.el b/lisp/text.el
index 4e7c410..5e67c39 100644
--- a/lisp/text.el
+++ b/lisp/text.el
@@ -3,6 +3,8 @@
(defun setup-text-mode ()
"Disable word wrap in text mode."
(setq word-wrap t)
+ (require 'flyspell)
+ (flyspell-mode 1)
)
(add-hook 'text-mode-hook 'setup-text-mode)