My Vim plugins and .vimrc
Ensure your .vim folder doesn't exist, move it if you've already got suff in there.
rm -rf ~/.vim
Clone the repo:
# if you're me
git clone [email protected]:tpickett66/vim-plugins.git ~/.vim
# everyone else
git clone git://github.com/tpickett66/vim-plugins.git ~/.vim
Actually pull in the plugins since they're all git submodules
cd ~/.vim
git submodule init
git submodule update
Build the command-t C extension
rvm use system
cd ~/.vim/bundle/command-t/ruby/command-t
ruby extconf.rb
make
Link the vimrc and gvimrc files into your home dir
ln -s ~/.vim/vimrc ~/.vimrc
ln -s ~/.vim/gvimrc ~/.gvimrc