system changes

This commit is contained in:
jjanzen 2025-03-06 14:22:01 -06:00
parent dc0806ff38
commit 29472b5f07
2 changed files with 10 additions and 0 deletions

View file

@ -1,5 +1,10 @@
#+title: Emacs Early Initialization
Set high =gc-cons-threshold= while booting.
#+begin_src emacs-lisp
(setq gc-cons-threshold most-positive-fixnum)
#+end_src
Disable =package.el= at startup so that =elpaca= can enable it on its own.
#+begin_src emacs-lisp
(setq package-enable-at-startup nil)

View file

@ -552,3 +552,8 @@ Set up =eglot= to run on languages that have been configured.
(tree-sitter-mode 1)
(tree-sitter-hl-mode 1))))
#+end_src
Set =gc-cons-threshold= to a normal value while running.
#+begin_src emacs-lisp
(setq gc-cons-threshold 800000)
#+end_src