feature/spellcheck: don't auto-enable spellcheck + <leader>ts binding

This commit is contained in:
Henrik Lissner 2017-03-01 19:24:10 -05:00
parent 568a7478b1
commit 1b32aac0a5
2 changed files with 1 additions and 2 deletions

View file

@ -2,8 +2,6 @@
(def-package! flyspell ; built-in
:commands flyspell-mode
:init
(add-hook 'text-mode-hook 'flyspell-mode)
:config
(setq ispell-program-name (executable-find "aspell")
ispell-list-command "--list"

View file

@ -102,6 +102,7 @@
(:desc "Toggle"
:prefix "t"
:desc "Spell check" :n "s" 'flyspell-mode
:desc "Line numbers" :n "l" 'doom/toggle-line-numbers
:desc "Fullscreen" :n "f" 'doom/toggle-fullscreen)