diff options
| author | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-06-05 22:18:25 -0400 |
|---|---|---|
| committer | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-06-05 22:18:25 -0400 |
| commit | 4d6b9c22ac2a627ef784082ef26e2f3336f8ee2e (patch) | |
| tree | a53c9feddcfc2f0a16976846f756aef0056c96ad | |
| parent | Merge `cleanup-everything` branch to `stable` branch (diff) | |
| download | mmosmacs-4d6b9c22ac2a627ef784082ef26e2f3336f8ee2e.tar.gz mmosmacs-4d6b9c22ac2a627ef784082ef26e2f3336f8ee2e.tar.bz2 mmosmacs-4d6b9c22ac2a627ef784082ef26e2f3336f8ee2e.zip | |
Cleanup comments and formatting
| -rw-r--r-- | early-init.el | 11 |
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 | ||