14 lines
516 B
Lua
14 lines
516 B
Lua
---@type ToolchainRequirements
|
|
return {
|
|
plugins = {
|
|
table.unpack(require('toolchain.text.formatter').plugins),
|
|
table.unpack(require('toolchain.text.actions').plugins),
|
|
table.unpack(require('toolchain.text.diagnostics').plugins),
|
|
table.unpack(require('toolchain.text.debugger').plugins),
|
|
table.unpack(require('toolchain.text.plugins')),
|
|
},
|
|
highlighters = {
|
|
'markdown',
|
|
},
|
|
language_servers = require('toolchain.text.language_server').requirements,
|
|
}
|