From c2185ef8270be91d5a70c56265d95a42ad56b502 Mon Sep 17 00:00:00 2001 From: Jens Luedicke Date: Mon, 8 Sep 2025 15:31:08 +0200 Subject: [PATCH] Apply font settings to all frames --- lisp/init-ui.el | 4 ++++ 1 file changed, 4 insertions(+) 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")