early-init.el (258B)
1 ; Disable GC while starting up 2 (setq startup/gc-cons-threshold gc-cons-threshold) 3 (setq gc-cons-threshold most-positive-fixnum) 4 (defun startup/reset-gc () 5 (setq gc-cons-threshold startup/gc-cons-threshold)) 6 (add-hook 'emacs-startup-hook 'startup/reset-gc)