Add headers and provide to each package
This commit is contained in:
parent
ae4946ea96
commit
4337243183
11 changed files with 105 additions and 11 deletions
11
09ispell.el
11
09ispell.el
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue