From de5460567b14e98e54d0e96b867b9f3f3ab28c55 Mon Sep 17 00:00:00 2001 From: saibotk Date: Thu, 6 Dec 2018 18:57:21 +0100 Subject: [PATCH] Check for an existing vundle installation --- .setup.sh.swp | Bin 0 -> 12288 bytes setup.sh | 7 +++++-- 2 files changed, 5 insertions(+), 2 deletions(-) create mode 100644 .setup.sh.swp diff --git a/.setup.sh.swp b/.setup.sh.swp new file mode 100644 index 0000000000000000000000000000000000000000..a91fe0d9715755a5c2b99f499902e2d2b71bc412 GIT binary patch literal 12288 zcmeI2O^X~w7{{OJX`(TrqL&EI?ut>QyLaOuAxc0bfjwx1=pt@%=$Go5V!Er_uIgb| zNxX}954nbroN|unMK7NH0E#z31>-01U;VP1G0R?ZTJjA1r(d4e`c>6HGo7q&ZGOP# z!ga#ud7}Ht2&{3yNu18xn$ybUddl6Ku=sAQ<3#0EqqtFJwa{kDZl+4|A=+3M z7X@#%CMy)zMLWeU&YP)O|e9rE=3v`y@EWzb3*w^p%6yi%p*LeCZNRxM{bV^g`kp1R;&R}Bn4OAUDOR9RG; z^yT_`%LRwPTqErm5jxLeX~=_V?5i7jh{R*&iEnRY9|U8jz|R@qc<4oD-&!=9eIew~ zId5~2AMVH3-tim^dG`Ut#T{*(^=Jm$qb8IaY-i;m)j0Li8E+3AXfj7GnK{J_1;98YSII9o+mKLZ2&p zL=JS>gMmQ}3x3h1!2_h>z%HS5WxIn;Ob2-H;s8fqeCUb~GJj!bP3j%`lY?B4p?B#| zu(47=bBgV5nN)>Nu{+G%va5J}x1FddhuPn6&fjXfhLLFBq072|+4X@M-Om8F2=;y2 zHjOgwq3qXb!sCMBV8N@eZLIQzC{v5bw1_x!;q?vrl9ra#8*dV=twgPDqC}er@7@0g DD!al0 literal 0 HcmV?d00001 diff --git a/setup.sh b/setup.sh index c51e7bf..6f1694f 100644 --- a/setup.sh +++ b/setup.sh @@ -18,8 +18,11 @@ ln -s ~/.dotfiles/.vim ~/.vim ln -s ~/.dotfiles/tmux.conf ~/.tmux.conf # install vundle -git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim - +if ! [ -f ~/.vim/bundle/Vundle.vim ]; then + git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim +else + echo '[INFO] Vundle is already installed.' +fi # if atom is installed import configs if commandExists atom; then if commandExists apm; then