10 lines
306 B
Lua
10 lines
306 B
Lua
|
local function init()
|
||
|
call_with_helpers(require('plugins.lspconfig.lua').init)
|
||
|
call_with_helpers(require('plugins.lspconfig.rust').init)
|
||
|
call_with_helpers(require('plugins.lspconfig.typescript').init)
|
||
|
call_with_helpers(require('plugins.lspconfig.ruby').init)
|
||
|
end
|
||
|
|
||
|
return {
|
||
|
init = init
|
||
|
}
|