From 7fe2e79f7f7c092a49b4116a498a2d85b3229c0d Mon Sep 17 00:00:00 2001 From: Marcel Kapfer Date: Thu, 23 Jun 2022 16:54:52 +0200 Subject: [PATCH] Increase GC threshold as recommended by lsp-mode --- config.org | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.org b/config.org index 4628211..3625d6f 100644 --- a/config.org +++ b/config.org @@ -90,7 +90,7 @@ Lock files don't play nice with npm. As recommended by [[https://emacs-lsp.github.io/lsp-mode/page/performance/][lsp-mode]], #+begin_src emacs-lisp -(setq gc-cons-threshold 100000000 +(setq gc-cons-threshold (* 100 1024 1024) read-process-output-max (* 1024 1024)) #+end_src