Attempt to tidy Emacs mode line

Removing the major-modes and VCS information from my mode line, since I don't
use this much and I think my mode line is noisy enough as is.
This commit is contained in:
William Carroll 2020-01-18 22:52:06 +00:00
parent cb39efd0ac
commit d85df45bab

View file

@ -49,6 +49,10 @@
(diminish 'counsel-mode)
(diminish 'ivy-mode))
;; TODO: Further customize `mode-line-format' variable.
(delete 'mode-line-modes mode-line-format)
(delete '(vc-mode vc-mode) mode-line-format)
;; disable startup screen
(setq inhibit-startup-screen t)