- Sublime Package Control for managing packages (like the ones below)
- Github theme for colors
- Soda theme for better chrome
- Sublime ERB keyboard shortcuts for ERB tags
My user settings:
{
"font_face": "Menlo",
"font_size": 12,
"theme": "Soda Light.sublime-theme",
"color_scheme": "Packages/GitHub.tmTheme",
"trim_trailing_white_space_on_save": true,
"auto_complete_commit_on_tab": true,
"tab_size": 2,
"translate_tabs_to_spaces": true
}
My key bindings:
[
{ "keys": ["ctrl+shift+."], "command": "erb" },
// Make paste-and-indent the default paste behavior
{ "keys": ["super+v"], "command": "paste_and_indent" },
{ "keys": ["super+shift+v"], "command": "paste" }
]
Bonus tip. I keep all my settings in Dropbox so they're easily shared/synced between computers:
$ ls -l /Users/javan/Library/Application\ Support/Sublime\ Text\ 2
lrwxr-xr-x 1 javan staff 55 Jul 9 13:25 /Users/javan/Library/Application Support/Sublime Text 2 -> /Users/javan/Dropbox/Application Support/Sublime Text 2