Skip to content

Commit cb33dea

Browse files
docs: update configs.md
skip-checks: true
1 parent 83f376f commit cb33dea

File tree

2 files changed

+50
-0
lines changed

2 files changed

+50
-0
lines changed

doc/configs.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,7 @@ Nvim by running `:help lspconfig-all`.
155155
- [jsonls](#jsonls)
156156
- [jsonnet_ls](#jsonnet_ls)
157157
- [julials](#julials)
158+
- [just](#just)
158159
- [kcl](#kcl)
159160
- [koka](#koka)
160161
- [kotlin_language_server](#kotlin_language_server)
@@ -5788,6 +5789,31 @@ Default config:
57885789

57895790
---
57905791

5792+
## just
5793+
5794+
https://github.com/terror/just-lsp
5795+
5796+
`just-lsp` is an LSP for just built on top of the tree-sitter-just parser.
5797+
5798+
Snippet to enable the language server:
5799+
```lua
5800+
require'lspconfig'.just.setup{}
5801+
```
5802+
5803+
Default config:
5804+
- `cmd` :
5805+
```lua
5806+
{ "just-lsp" }
5807+
```
5808+
- `filetypes` :
5809+
```lua
5810+
{ "just" }
5811+
```
5812+
- `root_dir` source (use "gF" to visit): [../lua/lspconfig/configs/just.lua:2](../lua/lspconfig/configs/just.lua#L2)
5813+
- `single_file_support` : `true`
5814+
5815+
---
5816+
57915817
## kcl
57925818

57935819
https://github.com/kcl-lang/kcl.nvim

doc/configs.txt

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5282,6 +5282,30 @@ Default config:
52825282
- `single_file_support` : `true`
52835283

52845284

5285+
------------------------------------------------------------------------------
5286+
just
5287+
5288+
https://github.com/terror/just-lsp
5289+
5290+
`just-lsp` is an LSP for just built on top of the tree-sitter-just parser.
5291+
5292+
Snippet to enable the language server: >lua
5293+
require'lspconfig'.just.setup{}
5294+
5295+
5296+
Default config:
5297+
- `cmd` :
5298+
```lua
5299+
{ "just-lsp" }
5300+
```
5301+
- `filetypes` :
5302+
```lua
5303+
{ "just" }
5304+
```
5305+
- `root_dir` source (use "gF" to visit): [../lua/lspconfig/configs/just.lua:2](../lua/lspconfig/configs/just.lua#L2)
5306+
- `single_file_support` : `true`
5307+
5308+
52855309
------------------------------------------------------------------------------
52865310
kcl
52875311

0 commit comments

Comments
 (0)