My Vim plugins and .vimrc
Ensure your .vim folder doesn't exist, move it if you've already got suff in there.
rm -rf ~/.vimClone 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 ~/.vimActually 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
makeLink the vimrc and gvimrc files into your home dir
ln -s ~/.vim/vimrc ~/.vimrc
ln -s ~/.vim/gvimrc ~/.gvimrc