Disable flyspell-mode in git-commit-mode

It seems like enabling flyspell-mode within git-commit-mode causes
Emacs to completely freeze up, requring a force quit.
This commit is contained in:
2017-01-17 00:09:25 +00:00
parent 0cbea47ecd
commit 2b885ce6a2

View File

@@ -38,7 +38,7 @@
(defun siren-git-commit-mode-defaults ()
(subword-mode)
(setq tab-width 2)
(flyspell-mode)
;; (flyspell-mode) ;; in GUI causes git-commit-mode to lock up emacs
(linum-mode t)
(auto-fill-mode))