diff options
author | Franck Cuny <franck.cuny@gmail.com> | 2016-11-20 09:41:31 -0800 |
---|---|---|
committer | Franck Cuny <franck.cuny@gmail.com> | 2016-11-20 09:41:31 -0800 |
commit | 8c0f2f434597b189198a6e984b162e8f75d9f658 (patch) | |
tree | 0b091daa0caec5c4591af90c0bf1301763e19c94 | |
parent | [Emacs] Make flycheck more readable in the mode line. (diff) | |
download | emacs.d-8c0f2f434597b189198a6e984b162e8f75d9f658.tar.gz |
[Emacs] Use a symbol for the mode name for Magit.
-rw-r--r-- | emacs.d/init.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/emacs.d/init.el b/emacs.d/init.el index 5051c13..f670f59 100644 --- a/emacs.d/init.el +++ b/emacs.d/init.el @@ -356,6 +356,9 @@ (global-git-commit-mode) (use-package git-commit :ensure t :defer t) (setq magit-display-buffer-function 'magit-display-buffer-fullframe-status-v1) + (add-hook 'magit-mode-hook + (lambda() + (setq mode-name "⎇"))) (add-hook 'magit-log-edit-mode-hook #'(lambda () (set-fill-column 72) |