Convert files to packages
This commit is contained in:
parent
b1a6bb4290
commit
c40fb9f504
12 changed files with 48 additions and 45 deletions
14
05ispell.el
Normal file
14
05ispell.el
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
;;; 05ispell -- summary
|
||||
;;; Commentary:
|
||||
;;; Highlight misspelled words
|
||||
;;; Code:
|
||||
|
||||
(use-package ispell
|
||||
:ensure t
|
||||
:config (setq ispell-program-name "aspell")
|
||||
(setq ispell-extra-args
|
||||
'("--run-together" "--run-together-limit=5" "--run-together-min=2"))
|
||||
:hook ((prog-mode text-mode) . flyspell-mode))
|
||||
|
||||
(provide '05ispell)
|
||||
;;; 05ispell.el ends here
|
||||
Loading…
Add table
Add a link
Reference in a new issue