mirror of
https://github.com/Crocmagnon/dotfiles.git
synced 2024-11-13 02:03:59 +01:00
28 lines
712 B
Lua
28 lines
712 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_reviser,
|
||
|
null_ls.builtins.formatting.golines,
|
||
|
},
|
||
|
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({bufnr = bufnr})
|
||
|
end,
|
||
|
})
|
||
|
end
|
||
|
end,
|
||
|
}
|
||
|
|
||
|
return opts
|