summaryrefslogtreecommitdiff
path: root/early-init.el
diff options
context:
space:
mode:
authorSzymon Szukalski <szymon@szymonszukalski.com>2026-04-09 10:53:27 +1000
committerSzymon Szukalski <szymon@szymonszukalski.com>2026-04-09 10:53:27 +1000
commitbc75732b9d37b77945a977ee9f7892cf6efc79c3 (patch)
tree4d9273ccc12c29eccc44fdc12372bea047414353 /early-init.el
parent12a5b1464bb919ba23f2aa6c22d44de81e382151 (diff)
Refactor Emacs config into modules
Diffstat (limited to 'early-init.el')
-rw-r--r--early-init.el14
1 files changed, 14 insertions, 0 deletions
diff --git a/early-init.el b/early-init.el
new file mode 100644
index 0000000..dcf868c
--- /dev/null
+++ b/early-init.el
@@ -0,0 +1,14 @@
+;;; early-init.el --- Early startup settings -*- lexical-binding: t; -*-
+
+;;; Commentary:
+
+;; Keep this file limited to settings that must exist before the first frame.
+
+;;; Code:
+
+(dolist (parameter '((width . 140)
+ (height . 42)))
+ (add-to-list 'default-frame-alist parameter)
+ (add-to-list 'initial-frame-alist parameter))
+
+;;; early-init.el ends here