1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-04-13 22:39:10 +08:00

Merge pull request #138 from SpaceVim/lang/lua

Add lua support
This commit is contained in:
Wang Shidong 2017-01-20 22:53:34 +08:00 committed by GitHub
commit 5150eaf415

View File

@ -0,0 +1,14 @@
"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