Last active
January 29, 2016 13:49
-
-
Save artem-a/eeaaec4b14278f4024f8 to your computer and use it in GitHub Desktop.
Sublime Text 3 settings for Ruby
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": ["alt+shift+up"], "command": "select_lines", "args": {"forward": false} }, | |
{ "keys": ["alt+shift+down"], "command": "select_lines", "args": {"forward": true} }, | |
{ "keys": ["ctrl+alt+m"], "command": "toggle_menu" } | |
] |
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
{ | |
"auto_complete": false, | |
"color_scheme": "Packages/Railscasts Extended/Railscasts Extended.tmTheme", | |
"disable_tab_abbreviations": true, | |
"enable_tab_scrolling": false, | |
"ensure_newline_at_eof_on_save": true, | |
"fallback_encoding": "Cyrillic (Windows 1251)", | |
"font_face": "Droid Sans Mono", | |
"font_options": | |
[ | |
"subpixel_antialias" | |
], | |
"font_size": 10, | |
"highlight_line": true, | |
"highlight_modified_tabs": true, | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"rulers": | |
[ | |
80 | |
], | |
"show_encoding": true, | |
"soda_folder_icons": true, | |
"tab_size": 2, | |
"theme": "SoDaReloaded Light.sublime-theme", | |
"translate_tabs_to_spaces": true, | |
"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