diff options
Diffstat (limited to 'early-init.el')
-rw-r--r-- | early-init.el | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/early-init.el b/early-init.el index f53a8bc..1f01c0a 100644 --- a/early-init.el +++ b/early-init.el | |||
@@ -7,6 +7,26 @@ | |||
7 | 7 | ||
8 | 8 | ||
9 | ;; --------------------------------------------------------------------- | 9 | ;; --------------------------------------------------------------------- |
10 | ;;; Performance hacks | ||
11 | ;; ------------------ | ||
12 | ;; These hacks subjectively make Emacs perform "better" | ||
13 | ;; --------------------------------------------------------------------- | ||
14 | |||
15 | |||
16 | ;; --------------------------------- | ||
17 | ;; GCMH | ||
18 | ;; ---- | ||
19 | ;; Garbage Collector Magic Hack | ||
20 | ;; --------------------------------- | ||
21 | |||
22 | ;; Defer garbage collection until later in the startup process | ||
23 | (setq gc-cons-threshold most-positive-fixnum | ||
24 | gc-cons-percentage 0.6) | ||
25 | |||
26 | |||
27 | |||
28 | |||
29 | ;; --------------------------------------------------------------------- | ||
10 | ;;; UI Adjustments | 30 | ;;; UI Adjustments |
11 | ;; --------------- | 31 | ;; --------------- |
12 | ;; The primary goal of this Section is to prevent Emacs from flashing or | 32 | ;; The primary goal of this Section is to prevent Emacs from flashing or |