summary refs log tree commit diff
path: root/emacs.d
diff options
context:
space:
mode:
Diffstat (limited to 'emacs.d')
-rw-r--r--emacs.d/core/core-flyspell.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/emacs.d/core/core-flyspell.el b/emacs.d/core/core-flyspell.el
index 7c61b49..551c59b 100644
--- a/emacs.d/core/core-flyspell.el
+++ b/emacs.d/core/core-flyspell.el
@@ -1,11 +1,11 @@
 (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)))
+    (add-hook 'text-mode-hook 'turn-on-flyspell)
+    (add-hook 'org-mode-hook 'turn-on-flyspell)))
 
 (provide 'core-flyspell)