cfg - Handle plugin installation/update

This commit is contained in:
Emmanuel BENOîT 2023-06-17 18:29:04 +02:00
parent bbddb43c37
commit 080e44cea8
No known key found for this signature in database
GPG key ID: 2356DC6956CF54EF
2 changed files with 5 additions and 5 deletions

View file

@ -1,7 +1,6 @@
" Force NeoBundle to check the loaded plugins and install them
call DoNeoBundleCheck( )
" Force Dein to check the loaded plugins and install them
call CheckDeinInstall( )
" Add key mappings for updates and installation
nnoremap <silent> <Leader>Pu :NeoBundleCheckUpdate<cr>
nnoremap <silent> <Leader>Pi :call DoNeoBundleCheck()<cr>
nnoremap <silent> <Leader>Pu :DeinUpdate<cr>
nnoremap <silent> <Leader>Pi :call CheckDeinInstall()<cr>

View file

@ -0,0 +1 @@
call dein#add('wsdjeg/dein-ui.vim')