diff options
author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2023-10-12 04:33:47 +0100 |
---|---|---|
committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2023-10-14 15:39:56 +0100 |
commit | 3a89df5f2ab7adf3823def9aec78d5f3a0a0d46f (patch) | |
tree | 6417349e0ee82ca5c95276fb2658f7d4f7888386 | |
parent | a06187046ee3a49fe5f160bf4f843f2c7d29625c (diff) | |
download | dotfiles-3a89df5f2ab7adf3823def9aec78d5f3a0a0d46f.tar.gz dotfiles-3a89df5f2ab7adf3823def9aec78d5f3a0a0d46f.tar.bz2 dotfiles-3a89df5f2ab7adf3823def9aec78d5f3a0a0d46f.zip |
(Emacs)~fix bug in personal-primary, line-numbers didn't work with zoom
Just inherit from default
-rw-r--r-- | Emacs/.config/emacs/elisp/personal-primary-theme.el | 4 |
1 files changed, 2 insertions, 2 deletions
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")))) |