22 lines
485 B
Lua
22 lines
485 B
Lua
|
local util = require 'lspconfig.util'
|
||
|
|
||
|
return {
|
||
|
default_config = {
|
||
|
cmd = { 'gopls' },
|
||
|
filetypes = { 'go', 'gomod', 'gotmpl' },
|
||
|
root_dir = function(fname)
|
||
|
return util.root_pattern 'go.work'(fname) or util.root_pattern('go.mod', '.git')(fname)
|
||
|
end,
|
||
|
},
|
||
|
docs = {
|
||
|
description = [[
|
||
|
https://github.com/golang/tools/tree/master/gopls
|
||
|
|
||
|
Google's lsp server for golang.
|
||
|
]],
|
||
|
default_config = {
|
||
|
root_dir = [[root_pattern("go.mod", ".git")]],
|
||
|
},
|
||
|
},
|
||
|
}
|