summaryrefslogtreecommitdiffstats
path: root/lisp/init-flyspell.el
blob: f2ca0e6d3c1c96c0957711eb1cfc0c056f22e695 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
(use-package flyspell
  ;; load flyspell automatically for these modes
  :hook ((git-commit-mode . flyspell-mode)
         (gfm-mode . flyspell-mode)
         (org-mode . flyspell-mode)
         (latex-mode . flyspell-mode))

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

(provide 'init-flyspell)