aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--early-init.el11
1 files changed, 7 insertions, 4 deletions
diff --git a/early-init.el b/early-init.el
index 1f01c0a..e9df2d0 100644
--- a/early-init.el
+++ b/early-init.el
@@ -1,10 +1,11 @@
1;;; -*- lexical-binding: t; -*- 1;;; early-init.el --- Early init file for MMOSMacs -*- lexical-binding: t; -*-
2;;; early-init.el
3;; 2;;
3;;; Commentary:
4;; Early Init file for MMOSMacs. This is loaded before the GUI and 4;; Early Init file for MMOSMacs. This is loaded before the GUI and
5;; package system are initialized. This should contain only what 5;; package system are initialized. This should contain only what
6;; absolutely must be in Early Init. 6;; absolutely must be in Early Init.
7 7
8;;; Code:
8 9
9;; --------------------------------------------------------------------- 10;; ---------------------------------------------------------------------
10;;; Performance hacks 11;;; Performance hacks
@@ -12,7 +13,6 @@
12;; These hacks subjectively make Emacs perform "better" 13;; These hacks subjectively make Emacs perform "better"
13;; --------------------------------------------------------------------- 14;; ---------------------------------------------------------------------
14 15
15
16;; --------------------------------- 16;; ---------------------------------
17;; GCMH 17;; GCMH
18;; ---- 18;; ----
@@ -61,7 +61,8 @@
61;; Maximize frame on startup 61;; Maximize frame on startup
62;; ------------------------- 62;; -------------------------
63;; Resizing is one of the primary 63;; Resizing is one of the primary
64;; sources of visual glitching. 64;; sources of visual glitching, and
65;; an expensive part of startup.
65;; --------------------------------- 66;; ---------------------------------
66 67
67(push '(fullscreen . maximized) initial-frame-alist) 68(push '(fullscreen . maximized) initial-frame-alist)
@@ -99,3 +100,5 @@
99;; `straight.el' 100;; `straight.el'
100;; --------------------------------- 101;; ---------------------------------
101(setq package-enable-at-startup nil) 102(setq package-enable-at-startup nil)
103
104;;; early-init.el ends here