summaryrefslogtreecommitdiff
path: root/lua/lang/zig.lua
diff options
context:
space:
mode:
authorAbouzar Parvan <[email protected]>2021-07-15 05:18:05 +0430
committerGitHub <[email protected]>2021-07-14 20:48:05 -0400
commite6de44e4443042dc14d34e36dd8ee8528f4936f2 (patch)
treed600f814c33e9154bbb3fdde0dfda6e75b071483 /lua/lang/zig.lua
parent2a7b3d4892605508d0b0328444d689e1c4922897 (diff)
more language reformat (#949)
Diffstat (limited to 'lua/lang/zig.lua')
-rw-r--r--lua/lang/zig.lua15
1 files changed, 14 insertions, 1 deletions
diff --git a/lua/lang/zig.lua b/lua/lang/zig.lua
index 178c6f54..1da329f5 100644
--- a/lua/lang/zig.lua
+++ b/lua/lang/zig.lua
@@ -15,7 +15,20 @@ M.lint = function()
return "No linters configured!"
end
-M.lsp = function() end
+M.lsp = function()
+
+if require("lv-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 {
+ 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