blob: cc4739b15e229969337ffb4c2e80d1116c09064c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#! /bin/bash
DIR=$(readlink -f $(dirname $0))
pushd $HOME >/dev/null
rm .vim*
ln -sf $DIR .vim
ln -sf $DIR/vimrc .vimrc
popd >/dev/null
git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/Vundle.vim
|