From ac704feb045704f14463c88ce6498b8b099dc67c Mon Sep 17 00:00:00 2001 From: worming Date: Tue, 11 Nov 2025 14:46:54 +0100 Subject: [PATCH] use correct lsp argument for starting lsp with neovim --- pages/installation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/installation.md b/pages/installation.md index 111f6c79..c7a92dc3 100644 --- a/pages/installation.md +++ b/pages/installation.md @@ -186,7 +186,7 @@ require('lspconfig').lexical.setup { As of neovim `0.11.3`, you can use the built-in lsp config: ```lua vim.lsp.config('expert', { - cmd = { 'expert' }, + cmd = { 'expert', '--stdio' }, root_markers = { 'mix.exs', '.git' }, filetypes = { 'elixir', 'eelixir', 'heex' }, })