summaryrefslogtreecommitdiff
path: root/early-init.el
diff options
context:
space:
mode:
Diffstat (limited to 'early-init.el')
-rw-r--r--early-init.el6
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))