mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-23 17:31:34 +08:00
19 lines
615 B
VimL
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
|