1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-23 17:31:34 +08:00
SpaceVim/autoload/SpaceVim/layers/lang/json.vim
2017-08-27 19:46:12 +00:00

19 lines
615 B
VimL

"=============================================================================
" json.vim --- lang#json layer
" Copyright (c) 2016-2017 Shidong Wang & Contributors
" Author: Shidong Wang < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: MIT license
"=============================================================================
function! SpaceVim#layers#lang#json#plugins() abort
let plugins = []
call add(plugins, ['elzr/vim-json', { 'on_ft' : ['javascript','json']}])
return plugins
endfunction
function! SpaceVim#layers#lang#json#config() abort
endfunction