From bc75732b9d37b77945a977ee9f7892cf6efc79c3 Mon Sep 17 00:00:00 2001 From: Szymon Szukalski Date: Thu, 9 Apr 2026 10:53:27 +1000 Subject: Refactor Emacs config into modules --- early-init.el | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 early-init.el (limited to 'early-init.el') 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 -- cgit v1.2.3