diff options
author | Franck Cuny <franckcuny@gmail.com> | 2015-11-19 16:54:00 -0800 |
---|---|---|
committer | Franck Cuny <franckcuny@gmail.com> | 2015-11-19 16:54:21 -0800 |
commit | 0df3632ca0e16eb23459cc634487b69e6e2f0923 (patch) | |
tree | 0f43858423091045ab3b412dc82dd10f2942946f /emacs.d/inits | |
parent | [emacs] add company-mode for golang. (diff) | |
download | emacs.d-0df3632ca0e16eb23459cc634487b69e6e2f0923.tar.gz |
[emacs] enable flyspell again.
closes #11.
Diffstat (limited to '')
-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))) |