diff options
author | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-05-25 23:11:22 -0400 |
---|---|---|
committer | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-05-25 23:11:22 -0400 |
commit | de47a4ef318e6da094ae07a3cd82b6cc172c2fc7 (patch) | |
tree | 99860dd583504d052ac7e6a1bc3c254cae15e8db | |
parent | Fix `org-roam-node-display-template` again (diff) | |
download | mmosmacs-de47a4ef318e6da094ae07a3cd82b6cc172c2fc7.tar.gz mmosmacs-de47a4ef318e6da094ae07a3cd82b6cc172c2fc7.tar.bz2 mmosmacs-de47a4ef318e6da094ae07a3cd82b6cc172c2fc7.zip |
Lower `gcmh-high-cons-threshold` in attempt to fix Emacs freezing
-rw-r--r-- | init.el | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -76,7 +76,7 @@ | |||
76 | :init | 76 | :init |
77 | (setq gcmh-idle-delay 15 | 77 | (setq gcmh-idle-delay 15 |
78 | gcmh-idle-delay-factor 10 | 78 | gcmh-idle-delay-factor 10 |
79 | gcmh-high-cons-threshold (* 16 (* 1024 1024))) ;16mb | 79 | gcmh-high-cons-threshold (* 16 1024) ;16kb |
80 | :hook (after-init-hook . gcmh-mode)) | 80 | :hook (after-init-hook . gcmh-mode)) |
81 | 81 | ||
82 | 82 | ||