31 lines
903 B
VimL
31 lines
903 B
VimL
|
"=============================================================================
|
||
|
" wdl.vim --- openwdl support in SpaceVim
|
||
|
" Copyright (c) 2016-2023 Wang Shidong & Contributors
|
||
|
" Author: Wang Shidong < wsdjeg@outlook.com >
|
||
|
" URL: https://spacevim.org
|
||
|
" License: GPLv3
|
||
|
"=============================================================================
|
||
|
|
||
|
""
|
||
|
" @section lang#wdl, layers-lang-wdl
|
||
|
" @parentsection layers
|
||
|
" This layer provides syntax highlighting for WDL file. and it is disabled by
|
||
|
" default, to enable this layer, add following snippet to your SpaceVim
|
||
|
" configuration file.
|
||
|
" >
|
||
|
" [[layers]]
|
||
|
" name = 'lang#wdl'
|
||
|
" <
|
||
|
"
|
||
|
|
||
|
function! SpaceVim#layers#lang#wdl#plugins() abort
|
||
|
let plugins = []
|
||
|
call add(plugins, ['wsdjeg/vim-wdl', {'merged' : 0}])
|
||
|
return plugins
|
||
|
endfunction
|
||
|
|
||
|
function! SpaceVim#layers#lang#wdl#health() abort
|
||
|
call SpaceVim#layers#lang#wdl#plugins()
|
||
|
return 1
|
||
|
endfunction
|