Customize magit-log-edit-mode.

Hopefully this will help me write better commit messages with fewer
spelling mistakes, and without long lines.
This commit is contained in:
2012-03-19 23:49:46 +00:00
parent 6bb761965c
commit 2f32571fcd
2 changed files with 8 additions and 0 deletions

View File

@@ -9,6 +9,7 @@
(load-file (config-path "mode-customizations/feature-mode.el"))
(load-file (config-path "mode-customizations/js-mode.el"))
(load-file (config-path "mode-customizations/markdown-mode.el"))
(load-file (config-path "mode-customizations/magit-log-edit-mode.el"))
(load-file (config-path "mode-customizations/php-mode.el"))
(load-file (config-path "mode-customizations/python-mode.el"))
(load-file (config-path "mode-customizations/ruby-mode.el"))

View File

@@ -0,0 +1,7 @@
(add-hook 'magit-log-edit-mode-hook
(lambda ()
(flyspell-mode)
(linum-mode t)
(auto-fill-mode)
(setq fill-column 72)
(fci-mode)))