commit d5fdfccde56cb7e15478763f8ff07448b3889fae from: Ashton Wiersdorf date: Fri Sep 6 03:36:47 2024 UTC Revert GC threshold after startup commit - f17a4b4d5116ac7eec3b30a0d43fa46eb074da0b commit + d5fdfccde56cb7e15478763f8ff07448b3889fae blob - 8bd3ddb53959b553ce3af878d1aedd84dff74d7e blob + 9782b8766824ad332dd644ccfa06d3419c674eb6 --- early-init.el +++ early-init.el @@ -16,6 +16,7 @@ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; Startup speed, annoyance suppression +(setq bedrock--initial-gc-threshold gc-cons-threshold) (setq gc-cons-threshold 10000000) (setq byte-compile-warnings '(not obsolete)) (setq warning-suppress-log-types '((comp) (bytecomp))) blob - 78dd81ef901a8613ce3b87b3eef42e7365a6b419 blob + cba11c899e0f33e18913a1f26b6f3d0c9eccb70c --- init.el +++ init.el @@ -252,3 +252,5 @@ If the new path's directories does not exist, create t ;; Your init file should contain only one such instance. ;; If there is more than one, they won't work right. ) + +(setq gc-cons-threshold (or bedrock--initial-gc-threshold 800000))