Add Go formatters for formatter.nvim setup

This commit is contained in:
2021-12-26 21:37:27 +03:00
parent a08ed1c36e
commit 4405df3b2c
2 changed files with 15 additions and 36 deletions

View File

@@ -14,6 +14,18 @@ local function luaformat()
} }
end end
local function gofmt()
return {exe = "gofmt", args = {vim.api.nvim_buf_get_name(0)}, stdin = true}
end
local function goimports()
return {
exe = "goimports",
args = {vim.api.nvim_buf_get_name(0)},
stdin = true
}
end
require("formatter").setup({ require("formatter").setup({
filetype = { filetype = {
javascript = {prettierd}, javascript = {prettierd},
@@ -25,9 +37,10 @@ require("formatter").setup({
scss = {prettierd}, scss = {prettierd},
json = {prettierd}, json = {prettierd},
svelte = {prettierd}, svelte = {prettierd},
lua = {luaformat} lua = {luaformat},
go = {gofmt, goimports}
} }
}) })
vim.cmd( vim.cmd(
[[autocmd BufWritePost *.js,*.jsx,*.ts,*.tsx,*.html,*.css,*.scss,*.json,*.svelte,*.lua FormatWrite]]) [[autocmd BufWritePost *.js,*.jsx,*.ts,*.tsx,*.html,*.css,*.scss,*.json,*.svelte,*.lua,*.go FormatWrite]])

View File

@@ -162,40 +162,6 @@ nvim_lsp.gopls.setup({
} }
}) })
function goimports(timeout_ms)
local context = {only = {"source.organizeImports"}}
vim.validate {context = {context, "t", true}}
local params = vim.lsp.util.make_range_params()
params.context = context
-- See the implementation of the textDocument/codeAction callback
-- (lua/vim/lsp/handler.lua) for how to do this properly.
local result = vim.lsp.buf_request_sync(0, "textDocument/codeAction",
params, timeout_ms)
if not result or next(result) == nil then return end
local actions = result[1].result
if not actions then return end
local action = actions[1]
-- textDocument/codeAction can return either Command[] or CodeAction[]. If it
-- is a CodeAction, it can have either an edit, a command or both. Edits
-- should be executed first.
if action.edit or type(action.command) == "table" then
if action.edit then
vim.lsp.util.apply_workspace_edit(action.edit)
end
if type(action.command) == "table" then
vim.lsp.buf.execute_command(action.command)
end
else
vim.lsp.buf.execute_command(action)
end
end
vim.cmd([[autocmd BufWritePre *.go lua vim.lsp.buf.formatting()]])
vim.cmd([[autocmd BufWritePre *.go lua goimports(1000)]])
require("luasnip/loaders/from_vscode").load({ require("luasnip/loaders/from_vscode").load({
include = {"javascript", "typescript", "go", "html"} include = {"javascript", "typescript", "go", "html"}
}) })