all repos — nixfiles @ fd9d7a3ec850d44fbefe9c45922c1caa112343e4

System and user configuration, managed by nix and home-manager

Emacs: Reduce GC usage at startup

Alan Pearce
commit

fd9d7a3ec850d44fbefe9c45922c1caa112343e4

parent

6062344d20ae6a28f24cc0278d1b74d1a6e7d37a

1 file changed, 2 insertions(+), 0 deletions(-)

jump to
M tag-emacs/emacs.d/init.orgtag-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