diff options
| author | Thomas Schneider <qsx@chaotikum.eu> | 2024-02-12 17:23:21 +0100 |
|---|---|---|
| committer | Thomas Schneider <qsx@chaotikum.eu> | 2024-02-12 17:23:21 +0100 |
| commit | 29f36095cf8cc39854949b3c00f3575fcb3e05e9 (patch) | |
| tree | 6c023599ad7dff68fa91a299aa7b0ff4e928cc77 /dot.emacs.d/init.el | |
| parent | fe6eef275357d19f0073ba6877a242a8f6dc4163 (diff) | |
Emacs: lsp-mode: Performance tuning, minor updates
Diffstat (limited to 'dot.emacs.d/init.el')
| -rw-r--r-- | dot.emacs.d/init.el | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/dot.emacs.d/init.el b/dot.emacs.d/init.el index bc685cb..b232d3a 100644 --- a/dot.emacs.d/init.el +++ b/dot.emacs.d/init.el @@ -109,8 +109,15 @@ (advice-add 'python-mode :before 'elpy-enable)) (use-package lsp-mode - :commands lsp) -(use-package lsp-ui) + :commands lsp + ;; https://emacs-lsp.github.io/lsp-mode/page/performance/ + :init + (setq read-process-output-max (* 1024 1024) ;; 1 MiB + gc-cons-threshold 6400000)) +(use-package lsp-ui + :commands lsp-ui-mode) +(use-package helm-lsp + :commands helm-lsp-workspace-symbol) (use-package mercurial :ensure nil |
