Optimize: different mode-line height in different platforms.

This commit is contained in:
Vincent Zhang 2018-12-19 17:00:36 +08:00
parent ebf3ddd249
commit a7dda5edb7

View file

@ -80,7 +80,11 @@
;; Variables ;; Variables
;; ;;
(defvar doom-modeline-height 25 (defvar doom-modeline-height (pcase system-type
('darwin 25)
('gnu/linux 30)
('windows-nt 40)
(_ 26))
"How tall the mode-line should be (only respected in GUI Emacs).") "How tall the mode-line should be (only respected in GUI Emacs).")
(defvar doom-modeline-bar-width 3 (defvar doom-modeline-bar-width 3