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

13 lines
177 B
Lua
Raw Normal View History

2022-10-23 10:35:25 +00:00
return {
settings = {
gopls = {
experimentalPostfixCompletions = true,
analyses = {
unusedparams = true,
shadow = true,
},
staticcheck = true,
},
},
}