File tree Expand file tree Collapse file tree 2 files changed +50
-0
lines changed Expand file tree Collapse file tree 2 files changed +50
-0
lines changed Original file line number Diff line number Diff line change @@ -155,6 +155,7 @@ Nvim by running `:help lspconfig-all`.
155
155
- [ jsonls] ( #jsonls )
156
156
- [ jsonnet_ls] ( #jsonnet_ls )
157
157
- [ julials] ( #julials )
158
+ - [ just] ( #just )
158
159
- [ kcl] ( #kcl )
159
160
- [ koka] ( #koka )
160
161
- [ kotlin_language_server] ( #kotlin_language_server )
@@ -5788,6 +5789,31 @@ Default config:
5788
5789
5789
5790
---
5790
5791
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
+
5791
5817
## kcl
5792
5818
5793
5819
https://github.com/kcl-lang/kcl.nvim
Original file line number Diff line number Diff line change @@ -5282,6 +5282,30 @@ Default config:
5282
5282
- `single_file_support` : `true`
5283
5283
5284
5284
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
+
5285
5309
------------------------------------------------------------------------------
5286
5310
kcl
5287
5311
You can’t perform that action at this time.
0 commit comments