mirror of
https://github.com/Crocmagnon/dotfiles.git
synced 2024-11-10 00:33:56 +01:00
27 lines
713 B
Lua
27 lines
713 B
Lua
local null_ls = require("null-ls")
|
|
local augroup = vim.api.nvim_create_augroup("LspFormatting", {})
|
|
|
|
local opts = {
|
|
sources = { -- run these on save
|
|
null_ls.builtins.formatting.gofumpt,
|
|
null_ls.builtins.formatting.goimports,
|
|
null_ls.builtins.diagnostics.golangci_lint,
|
|
},
|
|
on_attach = function (client, bufnr)
|
|
if client.supports_method("textDocument/formatting") then
|
|
vim.api.nvim_clear_autocmds({
|
|
group = augroup,
|
|
buffer = bufnr,
|
|
})
|
|
vim.api.nvim_create_autocmd("BufWritePre", {
|
|
group = augroup,
|
|
buffer = bufnr,
|
|
callback = function()
|
|
vim.lsp.buf.format({ async = false })
|
|
end,
|
|
})
|
|
end
|
|
end,
|
|
}
|
|
|
|
return opts
|