diff options
Diffstat (limited to 'emacs.d')
-rw-r--r-- | emacs.d/inits/50_flyspell.el | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/emacs.d/inits/50_flyspell.el b/emacs.d/inits/50_flyspell.el index fe0c754..14887e8 100644 --- a/emacs.d/inits/50_flyspell.el +++ b/emacs.d/inits/50_flyspell.el @@ -1,9 +1,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))) +(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))) |