nix/modules/home-manager/cli/neovim/files/lsp/go.lua

14 lines
241 B
Lua

return {
cmd = { "gopls" },
filetypes = { "go" },
root_markers = { "go.mod", ".git" },
settings = {
gopls = {
analyses = {
unusedparams = true,
},
staticcheck = true,
gofumpt = true,
},
},
}