Last active
December 31, 2015 06:39
-
-
Save holyketzer/7948879 to your computer and use it in GitHub Desktop.
Ruby Sublime config itemsItems from user_settings should be added in "Preferences" > "Settings - User"Items from user_key_bindings should be added in "Preferences" > "Key bindings - User"
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ "keys": ["ctrl+t"], "command": "expand_tabs", "args": { "set_translate_tabs": true } } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// The number of spaces a tab is considered equal to | |
"tab_size": 2, | |
// Set to true to insert spaces when tab is pressed | |
"translate_tabs_to_spaces": true, | |
// If translate_tabs_to_spaces is true, use_tab_stops will make tab and | |
// backspace insert/delete up to the next tabstop | |
"use_tab_stops": true, | |
// Set to "none" to turn off drawing white space, "selection" to draw only the | |
// white space within the selection, and "all" to draw all white space | |
"draw_white_space": "all", | |
"trim_trailing_white_space_on_save": true, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment