summary refs log tree commit diff stats
path: root/early-init.el
diff options
context:
space:
mode:
authorCase Duckworth2021-03-30 17:22:49 -0500
committerCase Duckworth2021-03-30 17:22:49 -0500
commit6e7a17b6e004d231b2e84551c7983562109f4497 (patch)
tree6d929da706cf2eb8b3db93fca26e4ebaeead0356 /early-init.el
parentAdd `:setq-default' macro to save a little load time (diff)
downloademacs-6e7a17b6e004d231b2e84551c7983562109f4497.tar.gz
emacs-6e7a17b6e004d231b2e84551c7983562109f4497.zip
Tweak garbage collection
Diffstat (limited to 'early-init.el')
-rw-r--r--early-init.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/early-init.el b/early-init.el index 2a6e068..ad1d856 100644 --- a/early-init.el +++ b/early-init.el
@@ -32,7 +32,8 @@
32 after init.") 32 after init.")
33 33
34(setq file-name-handler-alist nil) 34(setq file-name-handler-alist nil)
35(acdw/gc-disable) 35(setq gc-cons-threshold (* 800 1024 1024)
36 gc-cons-percentage 0.6)
36 37
37(add-hook 'after-init-hook 38(add-hook 'after-init-hook
38 (defun hook--post-init-reset () 39 (defun hook--post-init-reset ()