mirror of
https://github.com/LunarVim/LunarVim.git
synced 2025-08-05 02:24:58 +02:00
start formatting rules
This commit is contained in:
parent
b461c878e6
commit
9f511bcb59
65 changed files with 2829 additions and 2812 deletions
|
@ -1,15 +1,15 @@
|
|||
-- Because lspinstall don't support zig yet,
|
||||
-- So we need zls preset in global lib
|
||||
-- Further custom install zls in
|
||||
-- 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("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")
|
||||
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"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue