Skip to content

Commit 0468010

Browse files
docs: update configs.md
skip-checks: true
1 parent 3aca6d4 commit 0468010

File tree

2 files changed

+68
-0
lines changed

2 files changed

+68
-0
lines changed

doc/configs.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,7 @@ Nvim by running `:help lspconfig-all`.
149149
- [kcl](#kcl)
150150
- [koka](#koka)
151151
- [kotlin_language_server](#kotlin_language_server)
152+
- [kulala_ls](#kulala_ls)
152153
- [lean3ls](#lean3ls)
153154
- [leanls](#leanls)
154155
- [lelwel_ls](#lelwel_ls)
@@ -6399,6 +6400,39 @@ require'lspconfig'.kotlin_language_server.setup{}
63996400
```
64006401

64016402

6403+
## kulala_ls
6404+
6405+
https://github.com/mistweaverco/kulala-ls
6406+
6407+
A minimal language server for HTTP syntax.
6408+
6409+
6410+
6411+
**Snippet to enable the language server:**
6412+
```lua
6413+
require'lspconfig'.kulala_ls.setup{}
6414+
```
6415+
6416+
6417+
**Default values:**
6418+
- `cmd` :
6419+
```lua
6420+
{ "kulala-ls", "--stdio" }
6421+
```
6422+
- `filetypes` :
6423+
```lua
6424+
{ "http" }
6425+
```
6426+
- `root_dir` :
6427+
```lua
6428+
root_pattern('.git')
6429+
```
6430+
- `single_file_support` :
6431+
```lua
6432+
true
6433+
```
6434+
6435+
64026436
## lean3ls
64036437

64046438
https://github.com/leanprover/lean-client-js/tree/master/lean-language-server

doc/configs.txt

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,7 @@ Nvim by running `:help lspconfig-all`.
149149
- [kcl](#kcl)
150150
- [koka](#koka)
151151
- [kotlin_language_server](#kotlin_language_server)
152+
- [kulala_ls](#kulala_ls)
152153
- [lean3ls](#lean3ls)
153154
- [leanls](#leanls)
154155
- [lelwel_ls](#lelwel_ls)
@@ -6399,6 +6400,39 @@ require'lspconfig'.kotlin_language_server.setup{}
63996400
```
64006401

64016402

6403+
## kulala_ls
6404+
6405+
https://github.com/mistweaverco/kulala-ls
6406+
6407+
A minimal language server for HTTP syntax.
6408+
6409+
6410+
6411+
**Snippet to enable the language server:**
6412+
```lua
6413+
require'lspconfig'.kulala_ls.setup{}
6414+
```
6415+
6416+
6417+
**Default values:**
6418+
- `cmd` :
6419+
```lua
6420+
{ "kulala-ls", "--stdio" }
6421+
```
6422+
- `filetypes` :
6423+
```lua
6424+
{ "http" }
6425+
```
6426+
- `root_dir` :
6427+
```lua
6428+
root_pattern('.git')
6429+
```
6430+
- `single_file_support` :
6431+
```lua
6432+
true
6433+
```
6434+
6435+
64026436
## lean3ls
64036437

64046438
https://github.com/leanprover/lean-client-js/tree/master/lean-language-server

0 commit comments

Comments
 (0)