summaryrefslogtreecommitdiffstats
path: root/lisp/init-flyspell.el
blob: c72edcd159caf60690578056deae36c1211aae23 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
(use-package flyspell
  ;; package is bundled with emacs
  :ensure nil

  ;; load flyspell automatically for these modes
  :hook ((git-commit-mode . flyspell-mode)
         (gfm-mode . flyspell-mode))

  :bind (:map flyspell-mode-map
              ("C-c s" . flyspell-correct-word-before-point)))

(provide 'init-flyspell)