mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-22 20:11:32 +08:00
19 lines
644 B
VimL
19 lines
644 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: GPLv3
|
|
"=============================================================================
|
|
|
|
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
|
|
let g:vim_json_syntax_conceal = 0
|
|
endfunction
|