From e601ac73b3ec1c1ab5d5d21d4f7dc4b52152c7a6 Mon Sep 17 00:00:00 2001 From: Michiel Scholten Date: Mon, 6 Jan 2020 14:45:58 +0100 Subject: [PATCH] Using vim-plug now instead of Vundle; remove old falcon stuff --- install.sh | 19 +++---------------- 1 file changed, 3 insertions(+), 16 deletions(-) diff --git a/install.sh b/install.sh index 3ca4878..bcd0cb7 100644 --- a/install.sh +++ b/install.sh @@ -98,22 +98,9 @@ git submodule init echo "INFO: Update submodules" git submodule update -if [ ! -d "${HOME}/.vim/bundle/Vundle.vim" ]; then - mkdir -p ~/.vim/bundle - git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/Vundle.vim -else - cd ~/.vim/bundle/Vundle.vim || exit - git pull - cd || exit -fi - -echo "INFO: Vundle Install" -vim +BundleInstall +qall - -if [ ! -e ${HOME}/.githelpers ]; then - ln -s ${HOME}/.vim/bundle/falcon/.githelpers ${HOME}/.githelpers -else - echo "${HOME}/.githelpers exists, skipping" +if [ ! -d "${HOME}/.vim/autoload/plug.vim" ]; then + echo "INFO: vim-plug install by running vim" + vim fi #if [ -e ~/.dot_has_hg ]; then