Skip to content

Latest commit

 

History

History
27 lines (16 loc) · 618 Bytes

README.md

File metadata and controls

27 lines (16 loc) · 618 Bytes

To Install

(Re)move ~/.vim and ~/.vimrc if you have them already, and run:

git clone git@github.com:Casecommons/vim-config.git ~/.vim
cd ~/.vim
git submodule update --init
ln -s ~/.vim/vimrc ~/.vimrc
ln -s ~/.vim/ackrc ~/.ackrc

If you have RVM going on:

rvm use system

conf and make command-t:

cd ~/.vim/bundle/command-t/ruby/command-t
ruby extconf.rb
make

Updating

As long as your checkout is kept clean, you can easily update, rebase your local changes and update submodules with:

cd ~/.vim && git pull --rebase ; git submodule update ; cd -