11 lines
321 B
Plaintext
11 lines
321 B
Plaintext
|
vim.g.null_ls_disable = true
|
||
|
|
||
|
return {
|
||
|
go = "go", -- set to go1.18beta1 if necessary
|
||
|
goimport = "gopls", -- if set to 'gopls' will use gopls format, also goimport
|
||
|
fillstruct = "gopls",
|
||
|
gofmt = "gofumpt", -- if set to gopls will use gopls format
|
||
|
max_line_len = 120
|
||
|
null_ls_document_formatting_disable = true
|
||
|
}
|