diff --git a/lisp/init-ui.el b/lisp/init-ui.el index fb11427..3f1f2a1 100644 --- a/lisp/init-ui.el +++ b/lisp/init-ui.el @@ -38,6 +38,7 @@ (window-divider-mode 1) ;;; Font Settings (preserved from custom-set-faces) +;; Apply font settings to all frames (current and future) (set-face-attribute 'default nil :family "0xProto Nerd Font Mono" :foundry "nil" @@ -46,6 +47,9 @@ :height 140 :width 'normal) +;; Ensure font settings apply to new frames +(add-to-list 'default-frame-alist '(font . "0xProto Nerd Font Mono-14")) + ;;; Diff-hl face customizations (with-eval-after-load 'diff-hl (set-face-attribute 'diff-hl-change nil :background "blue3" :foreground "blue3")