diff options
author | christianchiarulli <[email protected]> | 2021-07-03 16:34:43 -0400 |
---|---|---|
committer | christianchiarulli <[email protected]> | 2021-07-03 16:34:43 -0400 |
commit | 8f37e7f2784b56d918f64960fd7b5c02947904f4 (patch) | |
tree | 779334acd01341786e81f00140a18bd91403b168 /ftplugin/zig.lua | |
parent | 703fdfd48d966c8a74085e9d77816fa76070b65a (diff) | |
parent | 80bda1932308dcaac74958ef771a9c060446f093 (diff) |
Merge branch 'master' of github.com:ChristianChiarulli/LunarVim into stable
Diffstat (limited to 'ftplugin/zig.lua')
-rw-r--r-- | ftplugin/zig.lua | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/ftplugin/zig.lua b/ftplugin/zig.lua new file mode 100644 index 00000000..06217ddd --- /dev/null +++ b/ftplugin/zig.lua @@ -0,0 +1,15 @@ +-- 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, +} +require('lv-utils').define_augroups({ + _zig_autoformat = { + {'BufWritePre', '*.zig', 'lua vim.lsp.buf.formatting_sync(nil, 1000)'}, + {'BufEnter', '*.zig', ':lua vim.api.nvim_buf_set_option(0, "commentstring", "// %s")'} + } +}) +vim.cmd("setl expandtab tabstop=8 softtabstop=4 shiftwidth=4") |