I'm trying out Sublime text 2

Coming from vim, I needed to make a few tweaks.

Enable Vim Mode by editing the config command+, and removing the ignored package. I also set it to start in command mode instead of insert mode when a new file is open. It should look like this when done:

{
"ignored_packages": [],
"vintage_start_in_command_mode": true
}

Then I installed http://wbond.net/sublime_packages/package_control, from their instructions:

Open the console with ctrl+` then paste in the following command:

import urllib2,os; pf='Package Control.sublime-package'; ipp=sublime.installed_packages_path(); os.makedirs(ipp) if not os.path.exists(ipp) else None; urllib2.install_opener(urllib2.build_opener(urllib2.ProxyHandler())); open(os.path.join(ipp,pf),'wb').write(urllib2.urlopen('http://sublime.wbond.net/'+pf.replace(' ','%20')).read()); print 'Please restart Sublime Text to finish installation'

Make key-repeat work when pressing and holding, so you can press h j k or l and move while holding:

defaults write com.sublimetext.2 ApplePressAndHoldEnabled -bool false