11 lines
307 B
VimL
11 lines
307 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>
|
|
|
|
" Up to 4 tasks in parallel
|
|
let g:spacevim_plugin_manager_processes=4
|