mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-23 22:20:06 +08:00
17 lines
200 B
Lua
17 lines
200 B
Lua
local spacevim = {}
|
|
|
|
|
|
local options = require('spacevim.opt')
|
|
local layers = require('spacevim.layer')
|
|
|
|
|
|
|
|
function spacevim.bootstrap()
|
|
|
|
options.init()
|
|
layers.init()
|
|
|
|
end
|
|
|
|
return spacevim
|