From: rearman Date: Mon, 17 Jun 2024 19:56:24 +0000 (-0400) Subject: Up the gc-cons-threshhold X-Git-Url: https://git.earman.xyz/?a=commitdiff_plain;h=963c7306b9a7e37bf2806f500ebbedad02ac0926;p=emacsinit.git Up the gc-cons-threshhold --- diff --git a/early-init.el b/early-init.el index 1ef1370..ec168c0 100644 --- a/early-init.el +++ b/early-init.el @@ -7,7 +7,7 @@ (setq gc-cons-threshold most-positive-fixnum gc-cons-percentage 0.6) -(add-hook 'after-init-hook #'(lambda () (setq gc-cons-threshold (* 1600 1000) +(add-hook 'after-init-hook #'(lambda () (setq gc-cons-threshold (* 1800 1000) gc-cons-percentage 0.1 garbage-collection-messages t)))