1
0
Fork 1
Dotfiles_nvim/lua/toolchain/web/requirements.lua

19 lines
581 B
Lua
Raw Normal View History

2024-07-02 21:52:43 +00:00
---@type ToolchainRequirements
return {
plugins = {
table.unpack(require('toolchain.web.formatter').plugins),
table.unpack(require('toolchain.web.actions').plugins),
table.unpack(require('toolchain.web.diagnostics').plugins),
table.unpack(require('toolchain.web.debugger').plugins),
table.unpack(require('toolchain.web.plugins')),
},
highlighters = {
'html',
'css',
'scss',
'javascript',
'typescript',
},
language_servers = require('toolchain.web.language_server').requirements,
}