From b8ff9f5adb5c5df67bbc98141489a5930a2472c7 Mon Sep 17 00:00:00 2001 From: Kevin Cotugno Date: Sun, 3 Jun 2018 19:46:07 -0700 Subject: [PATCH] Start flyspell and auto fill in org mode --- emacs.d/init.el | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/emacs.d/init.el b/emacs.d/init.el index 446c1f0..95eed77 100644 --- a/emacs.d/init.el +++ b/emacs.d/init.el @@ -151,7 +151,11 @@ useful for alternating between light and dark themes" ;; End themes (use-package org - :ensure t) + :ensure t + :config + (add-hook 'org-mode-hook (lambda () + (flyspell-mode) + (auto-fill-mode)))) (use-package org-bullets :ensure t