summary refs log tree commit diff
path: root/emacs.d/inits/50_flyspell.el
blob: fe0c75405da367f359b530200892c7fc1b5d3402 (plain) (blame)
1
2
3
4
5
6
7
8
9
;; (use-package flyspell
;;   :ensure t
;;   :defer t
;;   :init
;;   (progn
;;     (setq ispell-program-name "aspell"
;;           ispell-list-command "--list")
;;     (add-hook 'prog-mode-hook 'flyspell-prog-mode)
;;     (add-hook 'text-mode-hook 'turn-on-flyspell)))