;;; early-init.el --- minimal early startup config -*- lexical-binding: t; -*- ;; Keep startup work cheap, then restore saner values from init.el. (setq gc-cons-threshold most-positive-fixnum gc-cons-percentage 0.6) ;; Let init.el control package initialisation. (setq package-enable-at-startup nil) ;; Trim obvious GUI chrome early to reduce flicker. (menu-bar-mode -1) (tool-bar-mode -1) (scroll-bar-mode -1) ;; Conservative initial frame size. (add-to-list 'default-frame-alist '(width . 140)) (add-to-list 'default-frame-alist '(height . 42))