Check for an existing vundle installation

This commit is contained in:
saibotk 2018-12-06 18:57:21 +01:00
parent 8d9b6c1c28
commit de5460567b
2 changed files with 5 additions and 2 deletions

BIN
.setup.sh.swp Normal file

Binary file not shown.

View file

@ -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