Emacs: Reduce GC usage at startup
1 file changed, 2 insertions(+), 0 deletions(-)
jump to
M tag-emacs/emacs.d/init.org → tag-emacs/emacs.d/init.org
@@ -10,6 +10,7 @@ Open Emacs with just a plain window. No graphics or messages, please! #+BEGIN_SRC emacs-lisp (setq inhibit-startup-echo-area-message "alan") (setq inhibit-startup-screen t) + (setq gc-cons-threshold 100000000) #+END_SRC ** Scratch buffers@@ -2433,4 +2434,5 @@ (if (server-running-p server-name) (message "Server already appears to be running") (server-start))) (benchmark-init/deactivate) + (setq gc-cons-threshold 800000) #+END_SRC