1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
local M = {}
M.config = function()
O.lang.zig = {
formatter = {
exe = "zig",
args = { "fmt" },
stdin = false,
},
lsp = {
path = "zls",
},
}
end
M.format = function()
O.formatters.filetype["zig"] = {
function()
return {
exe = O.lang.zig.formatter.exe,
args = O.lang.zig.formatter.args,
stdin = O.lang.zig.formatter.stdin,
}
end,
}
require("formatter.config").set_defaults {
logging = false,
filetype = O.formatters.filetype,
}
end
M.lint = function()
-- TODO: implement linters (if applicable)
return "No linters configured!"
end
M.lsp = function()
if require("utils").check_lsp_client_active "zls" then
return
end
-- 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 {
cmd = { O.lang.zig.lsp.path },
root_dir = require("lspconfig").util.root_pattern(".git", "build.zig", "zls.json"),
on_attach = require("lsp").common_on_attach,
}
end
M.dap = function()
-- TODO: implement dap
return "No DAP configured!"
end
return M
|