mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
14 lines
363 B
EmacsLisp
14 lines
363 B
EmacsLisp
;; Make Magit it look a bit prettier with my theme
|
|
(add-hook 'magit-mode-hook
|
|
(lambda ()
|
|
(linum-mode t)))
|
|
|
|
;; Write commit messages in style
|
|
(add-hook 'magit-log-edit-mode-hook
|
|
(lambda ()
|
|
(flyspell-mode)
|
|
(linum-mode t)
|
|
(auto-fill-mode)
|
|
(setq fill-column 72)
|
|
(fci-mode)))
|