Replace Vundle by vim-plug

This commit is contained in:
Rodolphe Bréard 2023-06-04 14:01:50 +02:00
parent cc79c734fe
commit 20344237fd
5 changed files with 15 additions and 41 deletions

View file

@ -30,7 +30,7 @@ pacman -S dosfstools mtools
``` sh
# Base utils
yay -S liquidprompt
yay -S liquidprompt vim-plug
# Printer
yay -S brother-dcp1610w brscan-skey brscan4
# Graphical software
@ -39,25 +39,10 @@ yay -S cardpeek
## vim
Plugins are managed by Vundle, which is a git submodule. After cloning the `dotfiles` repository, you have to initialize the submodule and install all plugins.
Plugins are managed by `vim-plug`, which is installed from the AUR.
``` sh
cd dotfiles/
git submodule init
git submodule update
vim +PluginInstall +qall
```
Plugins can be updated with `vim +PluginUpdate +qall`.
Updating the Vundle submodule:
``` sh
cd .vim/bundle/Vundle.vim
git checkout master
git pull
cd -
git commit -m 'Update Vundle'
vim +PlugInstall
```