9 lines
253 B
Bash
Executable File
9 lines
253 B
Bash
Executable File
#!/bin/bash
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
|
|
|
if [ ! -d ~/.vim/bundle ]; then
|
|
mkdir -p ~/.vim/bundle
|
|
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
|
|
fi
|
|
ln -sf "$DIR/vimrc" ~/.vimrc
|