Useful Sublime Text User Preferences for Ruby on Rails Development
12.21.2014
In Sublime Text, go to Sublime Text > Preferences > Settings – User
My settings look like this:
{ "color_scheme": "Packages/Color Scheme - Default/Monokai.tmTheme", "font_size": 16, "ignored_packages": [ "Vintage" ], "scroll_past_end": true, "tab_size": 2, "theme": "Soda Dark 3.sublime-theme", "translate_tabs_to_spaces": true, "ensure_newline_at_eof_on_save": false }
Here’s what the settings do:
- Change the color scheme
- Increase the font size
- Ignore the “Vintage” package which lets you use VIM like commands
- Lets you scroll past the end
- Change the tab size to 2
- Change the theme
- Use spaces instead of tabs
- Ensure newline at end of file on save
You can also have syntax specific settings by going to Sublime Text > Preferences > Settings – More > Syntax Specific – User