feat(lsp): add +booster flag

Adds support for LSP IO performance booster. This may reduce UI-blocking
time in case of unresponsive LSP backend.
This commit is contained in:
Sergei Nizovtsev
2025-08-19 16:29:26 +02:00
committed by Henrik Lissner
parent 751ac6134b
commit 1ede94c88a
4 changed files with 33 additions and 2 deletions

View File

@@ -6,3 +6,7 @@
(unless (modulep! +eglot)
(unless (executable-find "npm")
(warn! "Couldn't find npm. `lsp-mode' needs npm to auto-install some LSP servers. For more information, see https://emacs-lsp.github.io/lsp-mode/page/languages/.")))
(when (modulep! +booster)
(unless (executable-find "emacs-lsp-booster")
(warn! "Couldn't find emacs-lsp-booster executable.")))