From 3a89df5f2ab7adf3823def9aec78d5f3a0a0d46f Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Thu, 12 Oct 2023 04:33:47 +0100 Subject: (Emacs)~fix bug in personal-primary, line-numbers didn't work with zoom Just inherit from default --- Emacs/.config/emacs/elisp/personal-primary-theme.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Emacs/.config') diff --git a/Emacs/.config/emacs/elisp/personal-primary-theme.el b/Emacs/.config/emacs/elisp/personal-primary-theme.el index e6656c6..678c447 100644 --- a/Emacs/.config/emacs/elisp/personal-primary-theme.el +++ b/Emacs/.config/emacs/elisp/personal-primary-theme.el @@ -3,8 +3,8 @@ (custom-theme-set-faces 'personal-primary - '(line-number ((t (:foreground "gray45" :background "gray1")))) - '(line-number-current-line ((t (:foreground "white" :background "gray1")))) + '(line-number ((t (:foreground "gray45" :background "gray1" :inherit (default))))) + '(line-number-current-line ((t (:foreground "white" :background "gray1" :inherit (default))))) '(child-frame-border ((t (:background "white")))) '(cursor ((((background light)) (:background "black")) (((background dark)) (:background "white")))) '(fixed-pitch ((t (:family "Monospace")))) -- cgit v1.2.3-13-gbd6f