From fc4e6357b011acb5bcbd5256f31479e285f555ff Mon Sep 17 00:00:00 2001 From: Emiliano Vavassori Date: Mon, 1 May 2023 23:58:03 +0200 Subject: [PATCH] prepare.sh prevede installazione di vim-plug. --- prepare.sh | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/prepare.sh b/prepare.sh index 0ccac28..9474264 100644 --- a/prepare.sh +++ b/prepare.sh @@ -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