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

Add vim-toml

close #1562
This commit is contained in:
wsdjeg 2018-03-31 22:27:58 +08:00
parent ad5dc7d977
commit b6457ecd2a

View File

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