diff options
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/lspconfig/configs/kulala_ls.lua | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/lua/lspconfig/configs/kulala_ls.lua b/lua/lspconfig/configs/kulala_ls.lua new file mode 100644 index 00000000..8113552c --- /dev/null +++ b/lua/lspconfig/configs/kulala_ls.lua @@ -0,0 +1,23 @@ +local util = require 'lspconfig.util' + +return { + default_config = { + cmd = { 'kulala-ls', '--stdio' }, + filetypes = { 'http' }, + root_dir = util.find_git_ancestor, + single_file_support = true, + }, + docs = { + description = [[ +https://github.com/mistweaverco/kulala-ls + +A minimal language server for HTTP syntax. +]], + default_config = { + cmd = { 'kulala-ls', '--stdio' }, + filetypes = { 'http' }, + root_dir = [[root_pattern('.git')]], + single_file_support = true, + }, + }, +} |
