aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2025-04-05 16:00:04 +0000
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2025-04-05 16:00:04 +0000
commitcb33dea610b7eff240985be9f6fe219920e630ef (patch)
treea7a744c419c54ea26d51681b11ecd75fc1e513ef
parentfeat: "just" lsp #3655 (diff)
downloadnvim-lspconfig-cb33dea610b7eff240985be9f6fe219920e630ef.tar
nvim-lspconfig-cb33dea610b7eff240985be9f6fe219920e630ef.tar.gz
nvim-lspconfig-cb33dea610b7eff240985be9f6fe219920e630ef.tar.bz2
nvim-lspconfig-cb33dea610b7eff240985be9f6fe219920e630ef.tar.lz
nvim-lspconfig-cb33dea610b7eff240985be9f6fe219920e630ef.tar.xz
nvim-lspconfig-cb33dea610b7eff240985be9f6fe219920e630ef.tar.zst
nvim-lspconfig-cb33dea610b7eff240985be9f6fe219920e630ef.zip
docs: update configs.mdv1.8.0
skip-checks: true
-rw-r--r--doc/configs.md26
-rw-r--r--doc/configs.txt24
2 files changed, 50 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
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