diff options
| author | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2025-11-12 16:50:58 +0000 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2025-11-12 16:50:58 +0000 |
| commit | 9c3742dd555142b38504f17126d63c385161ba57 (patch) | |
| tree | 66e8a37acaf1a0a602beee049d85df948577bb81 | |
| parent | feat(elixir-ls): set `cmd` #4178 (diff) | |
| download | nvim-lspconfig-9c3742dd555142b38504f17126d63c385161ba57.tar nvim-lspconfig-9c3742dd555142b38504f17126d63c385161ba57.tar.gz nvim-lspconfig-9c3742dd555142b38504f17126d63c385161ba57.tar.bz2 nvim-lspconfig-9c3742dd555142b38504f17126d63c385161ba57.tar.lz nvim-lspconfig-9c3742dd555142b38504f17126d63c385161ba57.tar.xz nvim-lspconfig-9c3742dd555142b38504f17126d63c385161ba57.tar.zst nvim-lspconfig-9c3742dd555142b38504f17126d63c385161ba57.zip | |
docs: update configs.md
skip-checks: true
| -rw-r--r-- | doc/configs.md | 8 | ||||
| -rw-r--r-- | doc/configs.txt | 6 |
2 files changed, 10 insertions, 4 deletions
diff --git a/doc/configs.md b/doc/configs.md index 13c486a4..94cd1c82 100644 --- a/doc/configs.md +++ b/doc/configs.md @@ -2400,11 +2400,11 @@ Default config: { editorInfo = { name = "Neovim", - version = "0.12.0-dev+g2822c38f2e" + version = "0.12.0-dev+g653871da1b" }, editorPluginInfo = { name = "Neovim", - version = "0.12.0-dev+g2822c38f2e" + version = "0.12.0-dev+g653871da1b" } } ``` @@ -3638,6 +3638,10 @@ vim.lsp.enable('elixirls') ``` Default config: +- `cmd` : + ```lua + { "elixir-ls" } + ``` - `filetypes` : ```lua { "elixir", "eelixir", "heex", "surface" } diff --git a/doc/configs.txt b/doc/configs.txt index 5c07e0b4..72d7253e 100644 --- a/doc/configs.txt +++ b/doc/configs.txt @@ -1571,11 +1571,11 @@ Default config: { editorInfo = { name = "Neovim", - version = "0.12.0-dev+g2822c38f2e" + version = "0.12.0-dev+g653871da1b" }, editorPluginInfo = { name = "Neovim", - version = "0.12.0-dev+g2822c38f2e" + version = "0.12.0-dev+g653871da1b" } } - on_attach (use "gF" to view): ../lsp/copilot.lua:106 @@ -2507,6 +2507,8 @@ Snippet to enable the language server: >lua Default config: +- cmd: >lua + { "elixir-ls" } - filetypes: >lua { "elixir", "eelixir", "heex", "surface" } - root_dir (use "gF" to view): ../lsp/elixirls.lua:34 |
