prepare.sh prevede installazione di vim-plug.

This commit is contained in:
Emiliano Vavassori 2023-05-01 23:58:03 +02:00
parent 6ed76dfb0d
commit fc4e6357b0
1 changed files with 5 additions and 4 deletions

View File

@ -46,8 +46,9 @@ fi
if [[ ! -f "${HOME}/.vimrc" ]]; then
ln -sf ${DOTFILES}/vimrc ${HOME}/.vimrc
ln -sf ${DOTFILES}/vim ${HOME}/.vim
mkdir -p ${HOME}/.vim/bundle
git clone https://github.com/VundleVim/Vundle.vim.git ${HOME}/.vim/bundle/Vundle.vim
# Installing vundle and plugins.
vim +PluginInstall +qall
# Installing vim-plug
curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
# Installing vim-plug and relative plugins
vim +PlugInstall +qall
fi