perf: gcmh-high-cons-threshold = 64mb

Up from a conservative 16mb. This is the temporary GC threshold while
the user is active, and should be set to a value that makes GC less
likely.
This commit is contained in:
Henrik Lissner
2024-12-06 23:59:43 -05:00
parent 2f8b49ea7a
commit 8056650364

View File

@ -89,7 +89,7 @@
;; well not be using gcmh at all.
(setq gcmh-idle-delay 'auto ; default is 15s
gcmh-auto-idle-delay-factor 10
gcmh-high-cons-threshold (* 16 1024 1024)) ; 16mb
gcmh-high-cons-threshold (* 64 1024 1024)) ; 64mb
(add-hook 'doom-first-buffer-hook #'gcmh-mode)