From 981804b78cfda14fb041c892104163e523e1f691 Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Tue, 18 Feb 2025 18:34:14 +0000 Subject: Fix height for modeline in theme This ensures I don't get weird artefacts from performing C-+ or C--. --- Emacs/.config/emacs/elisp/personal-solarized-theme.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Emacs/.config/emacs/elisp') diff --git a/Emacs/.config/emacs/elisp/personal-solarized-theme.el b/Emacs/.config/emacs/elisp/personal-solarized-theme.el index 91f77ea..dcd4e98 100644 --- a/Emacs/.config/emacs/elisp/personal-solarized-theme.el +++ b/Emacs/.config/emacs/elisp/personal-solarized-theme.el @@ -81,12 +81,12 @@ '(match ((t (:background "RoyalBlue3")))) '(minibuffer-prompt ((t (:foreground "cyan")))) '(mode-line ((t (:box (:line-width 1 :color "white") :foreground "LightSkyBlue" - :background "black" :inherit (default))))) + :background "black" :inherit (default) :height 130)))) '(mode-line-buffer-id ((t (:weight bold)))) '(mode-line-emphasis ((t (:weight bold)))) '(mode-line-inactive ((t (:box (:line-width 1 :color "grey10") :weight light :foreground "CadetBlue" :background "grey7" - :inherit (default))))) + :inherit (mode-line))))) '(next-error ((t (:inherit (region))))) '(orderless-match-face-0 ((t (:weight bold :foreground "lime green")))) '(orderless-match-face-1 ((t (:weight bold :foreground "light green")))) -- cgit v1.2.3-13-gbd6f