aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lsp/zls.lua
blob: 6a8dc0886f77d8550f84d75f2ba5fc5021a6b5e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
---@brief
--- https://github.com/zigtools/zls
---
--- Zig LSP implementation + Zig Language Server

---@type vim.lsp.Config
return {
  cmd = { 'zls' },
  filetypes = { 'zig', 'zir' },
  root_markers = { 'zls.json', 'build.zig', '.git' },
  workspace_required = false,
}