19 lines
601 B
Lua
19 lines
601 B
Lua
|
---@type ToolchainRequirements
|
||
|
return {
|
||
|
plugins = {
|
||
|
table.unpack(require('toolchain.git.formatter').plugins),
|
||
|
table.unpack(require('toolchain.git.actions').plugins),
|
||
|
table.unpack(require('toolchain.git.diagnostics').plugins),
|
||
|
table.unpack(require('toolchain.git.debugger').plugins),
|
||
|
table.unpack(require('toolchain.git.plugins')),
|
||
|
},
|
||
|
highlighters = {
|
||
|
'gitcommit',
|
||
|
'gitignore',
|
||
|
'gitattributes',
|
||
|
'git_rebase',
|
||
|
'git_config',
|
||
|
},
|
||
|
language_servers = require('toolchain.git.language_server').requirements,
|
||
|
}
|