18 lines
550 B
Lua
18 lines
550 B
Lua
|
---@type ToolchainRequirements
|
||
|
return {
|
||
|
plugins = {
|
||
|
table.unpack(require('toolchain.go.formatter').plugins),
|
||
|
table.unpack(require('toolchain.go.actions').plugins),
|
||
|
table.unpack(require('toolchain.go.diagnostics').plugins),
|
||
|
table.unpack(require('toolchain.go.debugger').plugins),
|
||
|
table.unpack(require('toolchain.go.plugins')),
|
||
|
},
|
||
|
highlighters = {
|
||
|
'go',
|
||
|
'gomod',
|
||
|
'gosum',
|
||
|
'gotmpl',
|
||
|
},
|
||
|
language_servers = require('toolchain.go.language_server').requirements,
|
||
|
}
|