Add headers and provide to each package

This commit is contained in:
Maciej 2020-07-24 09:10:11 +03:00
parent ae4946ea96
commit 4337243183
Signed by: maciej
GPG key ID: 41D62D42D3B0D765
11 changed files with 105 additions and 11 deletions

View file

@ -1,7 +1,14 @@
;; Highlight misspelled words
;;; 09ispell -- 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))
:hook ((prog-mode text-mode) . flyspell-mode))
(provide '09ispell)
;;; 09ispell.el ends here