From e67acca3a93f19cc2193a04c8b379fe094ecd014 Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Thu, 11 Apr 2019 09:00:19 +0200 Subject: [PATCH] =?UTF-8?q?[Init]=20Unconditionally=20enable=20=E2=80=98fl?= =?UTF-8?q?yspell-mode=E2=80=99=20in=20text=20buffers?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- init.el | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/init.el b/init.el index e9a02c5..c32c710 100644 --- a/init.el +++ b/init.el @@ -137,11 +137,7 @@ (when (<= 24 emacs-major-version) (add-hook 'prog-mode-hook 'electric-indent-local-mode)) - (unless (eq system-type 'windows-nt) - ;; 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-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)