1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-03 03:10:06 +08:00

Add lang#wdl layer (#3307)

This commit is contained in:
Wang Shidong 2020-01-31 13:07:36 +08:00 committed by GitHub
parent 4c7e254ef8
commit 4a77d41c37
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,14 @@
"=============================================================================
" wdl.vim --- openwdl support in SpaceVim
" Copyright (c) 2016-2019 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg@outlook.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
function! SpaceVim#layers#lang#wdl#plugins() abort
let plugins = []
call add(plugins, ['wsdjeg/vim-wdl', {'merged' : 0}])
return plugins
endfunction