summary refs log tree commit diff
diff options
context:
space:
mode:
authorFranck Cuny <franckcuny@gmail.com>2015-11-19 16:54:00 -0800
committerFranck Cuny <franckcuny@gmail.com>2015-11-19 16:54:21 -0800
commit0df3632ca0e16eb23459cc634487b69e6e2f0923 (patch)
tree0f43858423091045ab3b412dc82dd10f2942946f
parent[emacs] add company-mode for golang. (diff)
downloademacs.d-0df3632ca0e16eb23459cc634487b69e6e2f0923.tar.gz
[emacs] enable flyspell again.
closes #11.
-rw-r--r--emacs.d/inits/50_flyspell.el18
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)))