diff options
| author | GaƩtan Lepage <gaetan@glepage.com> | 2025-12-12 00:31:44 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-12-11 18:31:44 -0500 |
| commit | 2b8e0ad778439ef9b377c7fa18845f18bf6bca39 (patch) | |
| tree | 3ef588ba3b5e286f501b1e71fe41264f76efa443 | |
| parent | docs: update configs.md (diff) | |
| download | nvim-lspconfig-2b8e0ad778439ef9b377c7fa18845f18bf6bca39.tar nvim-lspconfig-2b8e0ad778439ef9b377c7fa18845f18bf6bca39.tar.gz nvim-lspconfig-2b8e0ad778439ef9b377c7fa18845f18bf6bca39.tar.bz2 nvim-lspconfig-2b8e0ad778439ef9b377c7fa18845f18bf6bca39.tar.lz nvim-lspconfig-2b8e0ad778439ef9b377c7fa18845f18bf6bca39.tar.xz nvim-lspconfig-2b8e0ad778439ef9b377c7fa18845f18bf6bca39.tar.zst nvim-lspconfig-2b8e0ad778439ef9b377c7fa18845f18bf6bca39.zip | |
feat(nextls): default cmd #4232
| -rw-r--r-- | lsp/nextls.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lsp/nextls.lua b/lsp/nextls.lua index 26f60013..c243dfbe 100644 --- a/lsp/nextls.lua +++ b/lsp/nextls.lua @@ -2,10 +2,11 @@ --- --- https://github.com/elixir-tools/next-ls --- ---- **By default, next-ls does not set its `cmd`. Please see the following [detailed instructions](https://www.elixir-tools.dev/docs/next-ls/installation/) for possible installation methods.** +--- **Please see the following [detailed instructions](https://www.elixir-tools.dev/docs/next-ls/installation/) for possible installation methods.** ---@type vim.lsp.Config return { + cmd = { 'nextls', '--stdio' }, filetypes = { 'elixir', 'eelixir', 'heex', 'surface' }, root_markers = { 'mix.exs', '.git' }, } |
