mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-22 21:51:33 +08:00
13 lines
405 B
VimL
13 lines
405 B
VimL
function! SpaceVim#layers#denite#plugins() abort
|
|
return [
|
|
\ ['Shougo/denite.nvim',{ 'merged' : 0, 'loadconf' : 1}],
|
|
\ ['pocari/vim-denite-emoji', {'merged' : 0}],
|
|
\ ]
|
|
endfunction
|
|
|
|
function! SpaceVim#layers#denite#config() abort
|
|
call SpaceVim#mapping#space#def('nnoremap', ['j', 'i'], 'Denite outline', 'jump to a definition in buffer', 1)
|
|
endfunction
|
|
|
|
" vim:set et sw=2 cc=80:
|