1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-23 11:01:34 +08:00
SpaceVim/autoload/SpaceVim/layers/lang/toml.vim
2018-03-31 22:27:58 +08:00

13 lines
499 B
VimL

"=============================================================================
" toml.vim --- toml layer for SpaceVim
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
function! SpaceVim#layers#lang#toml#plugins() abort
let plugins = []
call add(plugins, ['cespare/vim-toml', {'merged' : 0}])
return plugins
endfunction