Files
.emacs.d/early-init.el

28 lines
704 B
EmacsLisp
Raw Normal View History

2025-12-14 04:51:24 +11:00
;; -*- lexical-binding: t -*-
2025-12-14 21:09:42 +11:00
2025-12-14 21:11:11 +11:00
(setq gc-cons-threshold 33554432)
2025-12-14 21:09:42 +11:00
2025-12-14 04:51:24 +11:00
(setq package-enable-at-startup nil)
2025-12-14 21:09:42 +11:00
(setq use-package-enable-imenu-support t)
(setq load-prefer-newer noninteractive)
(prefer-coding-system 'utf-8)
;; Inhibit resizing frame
(setq frame-inhibit-implied-resize t)
;; Faster to disable these here (before they've been initialized)
(push '(menu-bar-lines . 0) default-frame-alist)
(push '(tool-bar-lines . 0) default-frame-alist)
(push '(vertical-scroll-bars) default-frame-alist)
(when (featurep 'ns)
(push '(ns-transparent-titlebar . t) default-frame-alist)
(push '(ns-appearance . dark) default-frame-alist))
;; Prevent flash of unstyled mode line
(setq mode-line-format nil)