blob: e56a2cfbf10b577d1bfb71c9f34ea5f737bb4695 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
---@brief
---
--- https://github.com/mistweaverco/kulala-ls
---
--- A minimal language server for HTTP syntax.
---@type vim.lsp.Config
return {
cmd = { 'kulala-ls', '--stdio' },
filetypes = { 'http' },
root_markers = { '.git' },
}
|