about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--emacs/.emacs.d/wpc/wpc-misc.el5
1 files changed, 4 insertions, 1 deletions
diff --git a/emacs/.emacs.d/wpc/wpc-misc.el b/emacs/.emacs.d/wpc/wpc-misc.el
index f58bdeeee9ad..9d1ba7a54de5 100644
--- a/emacs/.emacs.d/wpc/wpc-misc.el
+++ b/emacs/.emacs.d/wpc/wpc-misc.el
@@ -127,7 +127,10 @@
 ;; git integration
 (use-package magit
   :config
-  (add-hook 'git-commit-setup-hook (lambda () (company-mode -1)))
+  (add-hook 'git-commit-setup-hook
+            (lambda ()
+              (company-mode -1)
+              (flyspell-mode 1)))
   (setq magit-display-buffer-function
         #'magit-display-buffer-fullframe-status-v1))