1
0

Add a simple install script

This commit is contained in:
2019-10-01 08:41:27 +02:00
parent b883f951d5
commit 2fcc78f84a

8
install.sh Executable file
View File

@ -0,0 +1,8 @@
#!/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