From 8084df9c93ae564776c84e5b9b839286fa820ba2 Mon Sep 17 00:00:00 2001 From: Lucas Sta Maria Date: Fri, 11 Oct 2024 22:16:13 -0400 Subject: [PATCH] fix(emacs): make line numbers scale correctly Signed-off-by: Lucas Sta Maria --- .emacs.d/include/general.el | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.emacs.d/include/general.el b/.emacs.d/include/general.el index f5cbb05..fc1b5b8 100644 --- a/.emacs.d/include/general.el +++ b/.emacs.d/include/general.el @@ -67,11 +67,13 @@ (set-frame-font (format "%s %d" priime-fixed-font priime-font-size)) (custom-set-faces - '(region ((t (:inherit nano-subtle :background "#EBE5F5")))) - '(lazy-highlight ((t (:inherit region)))) - `(variable-pitch ((t (:inherit default :family ,priime-variable-font :height 125 :weight regular)))) - `(fixed-pitch ((t (:family ,priime-fixed-font :height ,priime-fixed-height :inherit nil)))) - `(shr-text ((t (:inherit variable-pitch-text :family ,priime-variable-font))))) + '(region ((t (:inherit nano-subtle :background "#EBE5F5")))) + '(lazy-highlight ((t (:inherit region)))) + `(variable-pitch ((t (:inherit default :family ,priime-variable-font :height 125 :weight regular)))) + `(fixed-pitch ((t (:family ,priime-fixed-font :height ,priime-fixed-height :inherit nil)))) + `(shr-text ((t (:inherit variable-pitch-text :family ,priime-variable-font)))) + '(line-number ((t (:inherit default :foreground "#98A4AE")))) + '(line-number-current-line ((t (:inherit default :foreground "#98A4AE"))))) (set-face-attribute 'italic nil :family 'inherit :slant 'italic