auto detect file for zig, and language server for zig (#604)

Co-authored-by: maxxnino <idonthaveemail@dontknow.com>
This commit is contained in:
maxxnino 2021-07-03 14:41:32 +09:00 committed by GitHub
parent 27f662efa7
commit b6942d5025
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 21 additions and 1 deletions

4
ftdetect/zig.lua Normal file
View file

@ -0,0 +1,4 @@
vim.cmd([[
au BufRead,BufNewFile *.zig set filetype=zig
au BufRead,BufNewFile *.zir set filetype=zir
]])

15
ftplugin/zig.lua Normal file
View file

@ -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")

View file

@ -188,7 +188,8 @@ O = {
formatter = '',
autoformat = false,
virtual_text = true
}
},
zig = {}
},