13 lines
280 B
VimL
13 lines
280 B
VimL
vim9script
|
|
|
|
export def Init(tui_home: string)
|
|
tui#core#cached#Set("tui.home", tui_home)
|
|
# 加载插件
|
|
tui#core#plug#Init(expand(tui_home .. "/plugged"))
|
|
# 加载模块
|
|
tui#core#layer#Init(expand(tui_home .. "/layers"))
|
|
# 加载插件
|
|
tui#core#plug#Hook()
|
|
enddef
|
|
|