mirror of
https://github.com/marianozunino/nvim.git
synced 2025-06-28 02:23:50 -03:00
15 lines
383 B
Lua
15 lines
383 B
Lua
return {
|
|
settings = {
|
|
gopls = {
|
|
gofumpt = true, -- https://github.com/mvdan/gofumpt a stricter gofmt
|
|
completeUnimported = true,
|
|
usePlaceholders = true,
|
|
analyses = {
|
|
unusedparams = true,
|
|
},
|
|
},
|
|
},
|
|
flags = {
|
|
debounce_text_changes = 150, -- https://github.com/golang/tools/blob/master/gopls/doc/settings.md#change-detection
|
|
},
|
|
}
|