summaryrefslogtreecommitdiffstats
path: root/lisp/init-flyspell.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/init-flyspell.el')
-rw-r--r--lisp/init-flyspell.el6
1 files changed, 6 insertions, 0 deletions
diff --git a/lisp/init-flyspell.el b/lisp/init-flyspell.el
index 2ac7a3e..ce64dd2 100644
--- a/lisp/init-flyspell.el
+++ b/lisp/init-flyspell.el
@@ -1,3 +1,7 @@
+;;; init-flyspell.el --- configure flyspell
+;;; Commentary:
+;;; Code:
+
(use-package flyspell
;; load flyspell automatically for these modes
:hook ((git-commit-mode . flyspell-mode)
@@ -14,3 +18,5 @@
(setq ispell-program-name "hunspell")))
(provide 'init-flyspell)
+
+;;; init-flyspell.el ends here