diff options
Diffstat (limited to '.emacs.d/early-init.el')
-rw-r--r-- | .emacs.d/early-init.el | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.emacs.d/early-init.el b/.emacs.d/early-init.el new file mode 100644 index 0000000..40200af --- /dev/null +++ b/.emacs.d/early-init.el @@ -0,0 +1,10 @@ +(setenv "LIBRARY_PATH" + (string-join + '("/opt/homebrew/opt/gcc/lib/gcc/13" + "/opt/homebrew/opt/libgccjit/lib/gcc/13" + "/opt/homebrew/opt/gcc/lib/gcc/13/gcc/aarch64-apple-darwin22/13") + ":")) +(setq gc-cons-threshold 100000000) +(setq read-process-output-max (* 1024 1024)) +(setenv "LSP_USE_PLISTS" "true") +(setq-default lsp-use-plists t) |