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