From 32a52baa50bfbd719c66d3226e8f3a85e5ab87d2 Mon Sep 17 00:00:00 2001 From: Jessie Hildebrandt Date: Thu, 29 Dec 2022 20:51:45 -0500 Subject: [PATCH] Add default width and height to early-init forms --- init.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/init.el b/init.el index 91a5680..092b8d3 100644 --- a/init.el +++ b/init.el @@ -103,7 +103,9 @@ ";; Configure GUI components before initial frame creation" (setq inhibit-x-resources t frame-inhibit-implied-resize t - default-frame-alist '((font . ,user/font) + default-frame-alist '((width . 100) + (height . 40) + (font . ,user/font) (menu-bar-lines . 0) (tool-bar-lines . 0) (vertical-scroll-bars . nil)