system changes
This commit is contained in:
parent
dc0806ff38
commit
29472b5f07
2 changed files with 10 additions and 0 deletions
|
@ -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)
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue