1

Increase garbage collection threshold

This commit is contained in:
Jessie Hildebrandt 2020-07-21 20:48:11 -04:00
parent 331d8b8a13
commit 004e5c2648

View File

@ -18,8 +18,8 @@
;; Garbage Collector
;;====================
;; Set the default garbage collection parameters. (~8MB)
(defvar init-file/gc-cons-threshold 8000000 "Preferred garbage collection threshold value.")
;; Set the default garbage collection parameters. (~32MB)
(defvar init-file/gc-cons-threshold 32000000 "Preferred garbage collection threshold value.")
(defvar init-file/gc-cons-percentage 0.1 "Preferred garbage collection percentage value.")
;; Define some functions for deferring and restoring Emacs' garbage collection facilities.