1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-23 05:11:33 +08:00
SpaceVim/autoload/SpaceVim/layers/denite.vim

13 lines
405 B
VimL
Raw Normal View History

2017-01-14 14:36:36 +08:00
function! SpaceVim#layers#denite#plugins() abort
2017-06-02 00:13:15 +08:00
return [
\ ['Shougo/denite.nvim',{ 'merged' : 0, 'loadconf' : 1}],
\ ['pocari/vim-denite-emoji', {'merged' : 0}],
\ ]
2017-01-14 14:36:36 +08:00
endfunction
2017-06-02 00:13:15 +08:00
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: