From 5aec212e07911081430e99fe03db975bb97c7a38 Mon Sep 17 00:00:00 2001 From: Szymon Szukalski Date: Sat, 11 Apr 2026 10:57:04 +1000 Subject: Refine Org workflow config --- early-init.el | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'early-init.el') diff --git a/early-init.el b/early-init.el index af7274d..02212b2 100644 --- a/early-init.el +++ b/early-init.el @@ -1,6 +1,6 @@ ;;; early-init.el --- minimal early startup config -*- lexical-binding: t; -*- -;; Keep startup work cheap, then restore saner values from init.el. +;; Keep GC permissive during startup; init.el restores a steady-state threshold. (setq gc-cons-threshold most-positive-fixnum gc-cons-percentage 0.6) @@ -12,6 +12,8 @@ (tool-bar-mode -1) (scroll-bar-mode -1) -;; Conservative initial frame size. +;; Configure the first GUI frame before init.el runs. +(add-to-list 'default-frame-alist '(font . "JetBrains Mono-16")) +(add-to-list 'initial-frame-alist '(font . "JetBrains Mono-16")) (add-to-list 'default-frame-alist '(width . 140)) (add-to-list 'default-frame-alist '(height . 42)) -- cgit v1.2.3