diff options
| author | Szymon Szukalski <szymon@szymonszukalski.com> | 2026-04-11 10:57:04 +1000 |
|---|---|---|
| committer | Szymon Szukalski <szymon@szymonszukalski.com> | 2026-04-11 10:57:04 +1000 |
| commit | 5aec212e07911081430e99fe03db975bb97c7a38 (patch) | |
| tree | dd49dc3ec3632e706e114ea1481d1a15b893a1ee /early-init.el | |
| parent | 9825da1ef3e61d45b0a50586ec619d5045fe3a2b (diff) | |
Refine Org workflow config
Diffstat (limited to 'early-init.el')
| -rw-r--r-- | early-init.el | 6 |
1 files changed, 4 insertions, 2 deletions
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)) |
