1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-03 13:10:05 +08:00
SpaceVim/bundle/nvim-lspconfig-0.1.3/lua/lspconfig/server_configurations/zls.lua
2023-03-29 11:59:27 +08:00

21 lines
434 B
Lua
Vendored

local util = require 'lspconfig.util'
return {
default_config = {
cmd = { 'zls' },
filetypes = { 'zig', 'zir' },
root_dir = util.root_pattern('zls.json', '.git'),
single_file_support = true,
},
docs = {
description = [[
https://github.com/zigtools/zls
Zig LSP implementation + Zig Language Server
]],
default_config = {
root_dir = [[util.root_pattern("zls.json", ".git")]],
},
},
}