From 4df385648b5a760d3fae1cee87a6477aa656146f Mon Sep 17 00:00:00 2001 From: Joachim Nielandt Date: Wed, 3 May 2023 11:38:37 +0200 Subject: [PATCH] Fixed 'dancing font' in line numbers --- dot_config/doom/config.el | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dot_config/doom/config.el b/dot_config/doom/config.el index f1b84e6..3e2b0c3 100644 --- a/dot_config/doom/config.el +++ b/dot_config/doom/config.el @@ -42,13 +42,14 @@ ;; doom-variable-pitch-font (font-spec :family "Fira Sans" :size 13)) ;; ;; (font-spec :family "Fira Sans") ; nice, but not mono -(setq doom-font (font-spec :family "Hasklug Nerd Font") - doom-unicode-font (font-spec :family "Hasklug Nerd Font Mono") +(setq doom-font (font-spec :family "Hasklug Nerd Font Mono") + ;; doom-unicode-font (font-spec :family "Hasklug Nerd Font Mono")) doom-variable-pitch-font (font-spec :family "Fira Sans")) ;; This determines the style of line numbers in effect. If set to `nil', line ;; numbers are disabled. For relative line numbers, set this to `relative'. (setq display-line-numbers-type 'relative) +(setq display-line-numbers-widen 'true) ;; If you use `org' and don't want your org files in the default location below, ;; change `org-directory'. It must be set before org loads!