mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
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:
@@ -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"))
|
||||
|
||||
7
mode-customizations/magit-log-edit-mode.el
Normal file
7
mode-customizations/magit-log-edit-mode.el
Normal 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)))
|
||||
Reference in New Issue
Block a user