From 7d92842ff2922751270802009c072b0ed81c1b6b Mon Sep 17 00:00:00 2001 From: gibbert Date: Thu, 30 Apr 2026 15:47:24 +0000 Subject: [PATCH] matugen: fix emacs template constant line number size (#2317) Made it so line numbers don't stay a constant size when changing buffer text scale. See this thread: --- quickshell/matugen/templates/dank-emacs.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/quickshell/matugen/templates/dank-emacs.el b/quickshell/matugen/templates/dank-emacs.el index 452bf945..ccba5a08 100644 --- a/quickshell/matugen/templates/dank-emacs.el +++ b/quickshell/matugen/templates/dank-emacs.el @@ -243,8 +243,8 @@ `(which-key-special-key-face ((t (:foreground ,dank-yellow :weight bold)))) ;; Line numbers - `(line-number ((t (:foreground ,dank-gray :inherit fixed-pitch)))) - `(line-number-current-line ((t (:foreground ,dank-cyan :weight bold :inherit fixed-pitch)))) + `(line-number ((t (:foreground ,dank-gray :inherit default)))) + `(line-number-current-line ((t (:foreground ,dank-cyan :weight bold :inherit default)))) ;; Parenthesis matching `(sp-show-pair-match-face ((t (:background ,primary-container :foreground ,dank-cyan-bright))))