Last active
December 18, 2015 05:39
-
-
Save arkjun/5733996 to your computer and use it in GitHub Desktop.
Sublime Text 3 configuration files
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
Show hidden characters
[ | |
{ "keys": ["ctrl+alt+up"], "command": "select_lines", "args": {"forward": false} }, | |
{ "keys": ["ctrl+alt+down"], "command": "select_lines", "args": {"forward": true} }, | |
{ "keys": ["super+k", "super+s"], "command": "convert_to_snake"}, | |
{ "keys": ["super+k", "super+c"], "command": "convert_to_camel"}, | |
{ "keys": ["ctrl+shift+t"], "command": "delete_trailing_spaces" }, | |
{ "keys": ["ctrl+shift+d"], "command": "toggle_trailing_spaces" }, | |
{ "keys": ["super+v"], "command": "paste_and_indent" }, | |
{ "keys": ["super+shift+v"], "command": "paste" }, | |
{ "keys": ["super+alt+v"], "command": "insert_file_path" } | |
] |
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
{ | |
"installed_packages": | |
[ | |
"Case Conversion", | |
"ConvertToUTF8", | |
"Path Tools", | |
"SideBarEnhancements", | |
"SublimeERB" | |
] | |
} |
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
{ | |
"bold_folder_labels": false, | |
"color_scheme": "Packages/Color Scheme - Default/Solarized (Dark).tmTheme", | |
"draw_minimap_border": true, | |
"draw_white_space": "all", | |
"font_face": "Monaco", | |
"font_size": 15, | |
"highlight_line": true, | |
"highlight_modified_tabs": true, | |
"ignored_packages": | |
[ | |
"" | |
], | |
"line_padding_bottom": 0, | |
"line_padding_top": 0, | |
"margin": 2, | |
"show_encoding": true, | |
"show_full_path": true, | |
"tab_size": 2, | |
"translate_tabs_to_spaces": false, | |
"use_simple_full_screen": true, | |
"word_wrap": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment