Add Elixir and ispell configuration

This commit is contained in:
Maciej 2018-09-09 01:01:00 +03:00
parent 648a192b64
commit 58462d2961
Signed by: maciej
GPG key ID: 41D62D42D3B0D765
5 changed files with 21 additions and 12 deletions

6
09ispell.el Normal file
View file

@ -0,0 +1,6 @@
(require 'ispell)
;; Highlight misspelled words
(setq ispell-program-name "aspell")
(setq ispell-extra-args
'("--run-together" "--run-together-limit=5" "--run-together-min=2"))
(add-hook 'prog-mode-hook 'flyspell-mode)