all repos — archive/dotfiles @ 42f48126a24dfadd1a46575c62dd13d4f4d7cc93

Superseded by nixfiles

Emacs: Configure flyspell
Alan Pearce alan@alanpearce.uk
Fri, 21 Apr 2017 11:23:21 +0200
commit

42f48126a24dfadd1a46575c62dd13d4f4d7cc93

parent

59de8ca45f6a624663154dbc08fd2808ea30934c

1 files changed, 7 insertions(+), 0 deletions(-)

jump to
M emacs/.emacs.d/init.orgemacs/.emacs.d/init.org
@@ -2138,6 +2138,13 @@ ispell-really-aspell nil                                                  ispell-really-hunspell t)))))
 #+END_SRC
 
+#+BEGIN_SRC emacs-lisp
+(use-package flyspell
+  :config (progn
+            (add-hook 'text-mode-hook (lambda () (flyspell-mode +1)))
+            (add-hook 'prog-mode-hook (lambda () (flyspell-prog-mode +1)))))
+#+END_SRC
+
 * Scripting
 
 Make a shell-script buffer executable after saving it, if it has a shebang.