Add go config

This commit is contained in:
Juan Magalhães 2024-04-19 14:57:13 -03:00
parent 6db89ada2b
commit 500adadc1a
1 changed files with 11 additions and 1 deletions

View File

@ -1,6 +1,16 @@
local servers = {
-- clangd = {},
-- gopls = {},
gopls = {
go = {
analyses = {
unusedparams = true,
},
usePlaceholders = true,
completeUnimported = true,
staticcheck = true,
gofumpt = true,
},
},
-- pyright = {},
-- rust_analyzer = {},
eslint = {},