From 772ba2f6726c8ef3669609a8e7888bb65cfb595a Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Sat, 2 Mar 2019 11:15:28 +0100 Subject: [PATCH] [Init] Very minor restructuring --- init.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/init.el b/init.el index cc7213d..aa54c83 100644 --- a/init.el +++ b/init.el @@ -131,7 +131,6 @@ (add-hook 'minibuffer-setup-hook 'conditionally-enable-lispy) (add-hook 'minibuffer-setup-hook 'cursor-intangible-mode) (add-hook 'after-save-hook 'executable-make-buffer-file-executable-if-script-p) - (add-hook 'text-mode-hook 'turn-on-auto-fill) (add-hook 'prog-mode-hook 'page-break-lines-mode) (add-hook 'lisp-mode-hook 'turn-on-lispy-when-available) @@ -142,6 +141,8 @@ ;; flyspell doesn’t work on windows right now, need to further investigate ;; what is happening here (add-hook 'text-mode-hook 'turn-on-flyspell)) + + (add-hook 'text-mode-hook 'turn-on-auto-fill) (add-hook 'text-mode-hook 'yas-minor-mode-on) (add-hook 'text-mode-hook 'electric-quote-mode)