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

14 lines
213 B
Lua

return {
settings = {
gopls = {
experimentalPostfixCompletions = true,
analyses = {
shadow = true,
},
staticcheck = true,
directoryFilters = { "-.git" },
semanticTokens = true,
},
},
}