Last active
October 10, 2015 15:37
-
-
Save ccschmitz/3712204 to your computer and use it in GitHub Desktop.
My Sublime Text settings
This file contains 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
Show hidden characters
[ | |
// Advanced new file | |
{"keys": ["super+alt+shift+n"], "command": "advanced_new_file"}, | |
{"keys": ["super+alt+shift+r"], "command": "advanced_new_file", "args": {"rename": true}}, | |
// Switch casing | |
{ "keys": ["super+k", "super+s"], "command": "swap_case" }, | |
{ "keys": ["super+k", "super+t"], "command": "title_case" }, | |
// Ruby tags | |
{ "keys": ["super+5"], "command": "erb", "context": [{ "key": "selector", "operator": "equal", "operand": "text.html.ruby, text.haml, source.yaml, source.css, source.scss, source.js, source.coffee" }] }, | |
// RubyTest Override | |
{ "keys": ["super+shift+t"], "command": "reopen_last_file" }, | |
{ "keys": ["super+shift+y"], "command": "run_all_ruby_test" }, // test file | |
// Goto stuffs | |
{ "keys": ["alt+d"], "command": "goto_definition" } | |
] |
This file contains 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_commit_on_tab": true, | |
"bold_folder_labels": true, | |
"caret_style": "wide", | |
"class": "tabset_control", | |
"close_windows_when_empty": true, | |
"color_scheme": "Packages/Base16 Color Schemes/base16-eighties.dark.tmTheme", | |
"detect_indentation": true, | |
"draw_indent_guides": true, | |
"draw_white_space": "all", | |
"file_exclude_patterns": | |
[ | |
".DS_Store" | |
], | |
"folder_exclude_patterns": | |
[ | |
".bundle", | |
".idea", | |
".svn", | |
".git", | |
".hg", | |
".jhw-cache", | |
"CVS", | |
"coverage", | |
".sass-cache", | |
"tmp", | |
"node_modules" | |
], | |
"font_face": "Source Code Pro", | |
"font_size": 12, | |
"highlight_line": true, | |
"highlight_modified_tabs": true, | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"inverse_caret_state": true, | |
"line_padding_bottom": 2, | |
"line_padding_top": 2, | |
"open_files_in_new_window": false, | |
"rulers": | |
[ | |
80 | |
], | |
"scroll_past_end": true, | |
"show_line_endings": true, | |
"sidebar_folders": true, | |
"soda_folder_icons": true, | |
"tab_height": 20, | |
"tab_size": 2, | |
"tabs_padding_small": true, | |
"tabs_small": true, | |
"theme": "Afterglow.sublime-theme", | |
"translate_tabs_to_spaces": true, | |
"trim_trailing_white_space_on_save": true, | |
"vintage_start_in_command_mode": true, | |
"vintageous_origami_split_command": "carry", | |
"vintageous_use_ctrl_keys": true, | |
"word_wrap": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment