summaryrefslogtreecommitdiff
path: root/ftplugin/zig.lua
blob: 55707d85dae8ee3f5f0c8fee5dcb670ed2249d7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
if not require("lv-utils").check_lsp_client_active "zls" then
  -- Because lspinstall don't support zig yet,
  -- So we need zls preset in global lib
  -- Further custom install zls in
  -- https://github.com/zigtools/zls/wiki/Downloading-and-Building-ZLS
  require("lspconfig").zls.setup {
    root_dir = require("lspconfig").util.root_pattern(".git", "build.zig", "zls.json"),
    on_attach = require("lsp").common_on_attach,
  }
end

require("lv-utils").define_augroups {
  _zig_autoformat = {
    { "BufEnter", "*.zig", ':lua vim.api.nvim_buf_set_option(0, "commentstring", "// %s")' },
  },
}
vim.cmd "setl expandtab tabstop=8 softtabstop=4 shiftwidth=4"