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.md | |
| 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.md')
| -rw-r--r-- | doc/configs.md | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/doc/configs.md b/doc/configs.md index f211ccd0..7be8d4ab 100644 --- a/doc/configs.md +++ b/doc/configs.md @@ -155,6 +155,7 @@ Nvim by running `:help lspconfig-all`. - [jsonls](#jsonls) - [jsonnet_ls](#jsonnet_ls) - [julials](#julials) +- [just](#just) - [kcl](#kcl) - [koka](#koka) - [kotlin_language_server](#kotlin_language_server) @@ -5788,6 +5789,31 @@ 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 |
