1
0
mirror of https://github.com/dcarrillo/dotfiles.git synced 2024-09-18 22:52:39 +00:00
dotfiles/.config/nvim/lua/plugins/lsp/settings/gopls.lua

13 lines
177 B
Lua

return {
settings = {
gopls = {
experimentalPostfixCompletions = true,
analyses = {
unusedparams = true,
shadow = true,
},
staticcheck = true,
},
},
}