Check for an existing vundle installation
This commit is contained in:
parent
8d9b6c1c28
commit
de5460567b
2 changed files with 5 additions and 2 deletions
BIN
.setup.sh.swp
Normal file
BIN
.setup.sh.swp
Normal file
Binary file not shown.
7
setup.sh
7
setup.sh
|
@ -18,8 +18,11 @@ ln -s ~/.dotfiles/.vim ~/.vim
|
||||||
ln -s ~/.dotfiles/tmux.conf ~/.tmux.conf
|
ln -s ~/.dotfiles/tmux.conf ~/.tmux.conf
|
||||||
|
|
||||||
# install vundle
|
# 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 atom is installed import configs
|
||||||
if commandExists atom; then
|
if commandExists atom; then
|
||||||
if commandExists apm; then
|
if commandExists apm; then
|
||||||
|
|
Loading…
Add table
Reference in a new issue