Convert files to packages

This commit is contained in:
Maciej 2020-07-24 10:47:40 +03:00
parent b1a6bb4290
commit c40fb9f504
Signed by: maciej
GPG key ID: 41D62D42D3B0D765
12 changed files with 48 additions and 45 deletions

14
05ispell.el Normal file
View 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