summaryrefslogtreecommitdiffstats
path: root/lisp/init-flyspell.el
blob: bf4769d48be16b971175913a8b1cbab1599c161f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
(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)
         (org-mode . flyspell-mode))

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

(provide 'init-flyspell)