aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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