diff options
| author | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2025-12-11 23:31:31 +0000 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2025-12-11 23:31:31 +0000 |
| commit | 0ed99fd7da0ee71b7e9c9ae726c58f74cf7b80cf (patch) | |
| tree | f7a9f2b653f84eec53a763dc8cf71d71a1e25e15 /doc/configs.md | |
| parent | feat(lexical): default cmd #4231 (diff) | |
| download | nvim-lspconfig-0ed99fd7da0ee71b7e9c9ae726c58f74cf7b80cf.tar nvim-lspconfig-0ed99fd7da0ee71b7e9c9ae726c58f74cf7b80cf.tar.gz nvim-lspconfig-0ed99fd7da0ee71b7e9c9ae726c58f74cf7b80cf.tar.bz2 nvim-lspconfig-0ed99fd7da0ee71b7e9c9ae726c58f74cf7b80cf.tar.lz nvim-lspconfig-0ed99fd7da0ee71b7e9c9ae726c58f74cf7b80cf.tar.xz nvim-lspconfig-0ed99fd7da0ee71b7e9c9ae726c58f74cf7b80cf.tar.zst nvim-lspconfig-0ed99fd7da0ee71b7e9c9ae726c58f74cf7b80cf.zip | |
docs: update configs.md
skip-checks: true
Diffstat (limited to 'doc/configs.md')
| -rw-r--r-- | doc/configs.md | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/doc/configs.md b/doc/configs.md index f45e0b48..60432e5a 100644 --- a/doc/configs.md +++ b/doc/configs.md @@ -2405,11 +2405,11 @@ Default config: { editorInfo = { name = "Neovim", - version = "0.12.0-dev+g62dd74d472" + version = "0.12.0-dev+g3a70fc8cb8" }, editorPluginInfo = { name = "Neovim", - version = "0.12.0-dev+g62dd74d472" + version = "0.12.0-dev+g3a70fc8cb8" } } ``` @@ -4845,20 +4845,20 @@ Default config: { editorInfo = { name = "Neovim", - version = "0.12.0-dev+g62dd74d472" + version = "0.12.0-dev+g3a70fc8cb8" }, editorPluginInfo = { name = "Neovim LSP", - version = "0.12.0-dev+g62dd74d472" + version = "0.12.0-dev+g3a70fc8cb8" }, extension = { name = "Neovim LSP Client", - version = "0.12.0-dev+g62dd74d472" + version = "0.12.0-dev+g3a70fc8cb8" }, ide = { name = "Neovim", vendor = "Neovim", - version = "0.12.0-dev+g62dd74d472" + version = "0.12.0-dev+g3a70fc8cb8" } } ``` @@ -6605,10 +6605,8 @@ https://github.com/lexical-lsp/lexical Lexical is a next-generation language server for the Elixir programming language. -Follow the [Detailed Installation Instructions](https://github.com/lexical-lsp/lexical/blob/main/pages/installation.md) - -**By default, `lexical` doesn't have a `cmd` set.** -This is because nvim-lspconfig does not make assumptions about your path. +To install from source, follow the [Detailed Installation Instructions](https://github.com/lexical-lsp/lexical/blob/main/pages/installation.md). +Ensure to point `cmd` to the generated `_build/dev/package/lexical/start_lexical.sh` executable. Snippet to enable the language server: ```lua @@ -6616,6 +6614,10 @@ vim.lsp.enable('lexical') ``` Default config: +- `cmd` : + ```lua + { "lexical" } + ``` - `filetypes` : ```lua { "elixir", "eelixir", "heex", "surface" } |
