843d1ca3a1
Signed-off-by: Timothy Pidashev <mail@timmypidashev.dev>
13 lines
266 B
Lua
13 lines
266 B
Lua
return {
|
|
cmd = { "gopls" },
|
|
filetypes = { "go", "gomod", "gowork", "gotmpl" },
|
|
root_markers = { "go.work", "go.mod", ".git" },
|
|
settings = {
|
|
gopls = {
|
|
analyses = { unusedparams = true },
|
|
staticcheck = true,
|
|
gofumpt = true,
|
|
},
|
|
},
|
|
}
|