Emmanuel BENOîT
be99bfda32
Don't load plugins based on keyboard shortcuts, as this conflicts with vim-which-key. Instead, create shortcuts when plugins are declared, and load them when the commands they provide are used.
8 lines
236 B
VimL
8 lines
236 B
VimL
call dein#add('wsdjeg/dein-ui.vim', #{
|
|
\ lazy: 1,
|
|
\ on_cmd: ['DeinUpdate'],
|
|
\ })
|
|
|
|
" Add key mappings for updates and installation
|
|
nnoremap <silent> <Leader>Pu :DeinUpdate<cr>
|
|
nnoremap <silent> <Leader>Pi :call CheckDeinInstall()<cr>
|