diff options
| author | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2025-04-05 16:00:04 +0000 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2025-04-05 16:00:04 +0000 |
| commit | cb33dea610b7eff240985be9f6fe219920e630ef (patch) | |
| tree | a7a744c419c54ea26d51681b11ecd75fc1e513ef /doc/configs.txt | |
| parent | feat: "just" lsp #3655 (diff) | |
| download | nvim-lspconfig-1.8.0.tar nvim-lspconfig-1.8.0.tar.gz nvim-lspconfig-1.8.0.tar.bz2 nvim-lspconfig-1.8.0.tar.lz nvim-lspconfig-1.8.0.tar.xz nvim-lspconfig-1.8.0.tar.zst nvim-lspconfig-1.8.0.zip | |
docs: update configs.mdv1.8.0
skip-checks: true
Diffstat (limited to 'doc/configs.txt')
| -rw-r--r-- | doc/configs.txt | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/doc/configs.txt b/doc/configs.txt index 53526551..333e987f 100644 --- a/doc/configs.txt +++ b/doc/configs.txt @@ -5283,6 +5283,30 @@ Default config: ------------------------------------------------------------------------------ +just + +https://github.com/terror/just-lsp + +`just-lsp` is an LSP for just built on top of the tree-sitter-just parser. + +Snippet to enable the language server: >lua + require'lspconfig'.just.setup{} + + +Default config: +- `cmd` : + ```lua + { "just-lsp" } + ``` +- `filetypes` : + ```lua + { "just" } + ``` +- `root_dir` source (use "gF" to visit): [../lua/lspconfig/configs/just.lua:2](../lua/lspconfig/configs/just.lua#L2) +- `single_file_support` : `true` + + +------------------------------------------------------------------------------ kcl https://github.com/kcl-lang/kcl.nvim |
