1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-24 05:40:05 +08:00

Merge branch 'master' into improve-javascript

This commit is contained in:
Seong Yong-ju 2018-02-21 01:22:22 +09:00 committed by GitHub
commit 484e4c35f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 1 deletions

View File

@ -70,6 +70,6 @@ function! SpaceVim#layers#github#config() abort
call SpaceVim#mapping#space#def('nnoremap', ['g', 'h', 'I'],
\ 'OpenGithubIssue', 'show issues in browser', 1)
call SpaceVim#mapping#space#def('nnoremap', ['g', 'h', 'p'],
\ 'OpenGithubPullRequests', 'show PRs in browser', 1)
\ 'OpenGithubPullReq', 'show PRs in browser', 1)
"" }}}
endfunction

View File

@ -14,5 +14,13 @@ endfunction
function! SpaceVim#layers#lang#json#config() abort
" elzr/vim-json {{{
" conceal by default
let g:vim_json_syntax_conceal = 0
" }}}
augroup SpaceVim_d_lang_json
autocmd!
autocmd FileType json setlocal foldmethod=syntax
augroup END
endfunction