mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-03-25 19:32:20 +08:00
15 lines
442 B
VimL
15 lines
442 B
VimL
"WolfgangMehner/lua-support
|
|
"http://lua-users.org/wiki/LuaEditorSupport
|
|
"
|
|
function! SpaceVim#layers#lang#lua#plugins() abort
|
|
let plugins = []
|
|
" Improved Lua 5.3 syntax and indentation support for Vim
|
|
call add(plugins, ['tbastos/vim-lua', {'on_ft' : 'lua'}])
|
|
call add(plugins, ['WolfgangMehner/lua-support', {'on_ft' : 'lua'}])
|
|
return plugins
|
|
endfunction
|
|
|
|
function! SpaceVim#layers#lang#lua#config() abort
|
|
|
|
endfunction
|