Last active
February 24, 2016 20:59
-
-
Save lukzgois/bfb9425fd79031e45ee6 to your computer and use it in GitHub Desktop.
Sublime Config Files
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
[ | |
{ "keys": ["f6"], "command": "expand_fqcn" }, | |
{ "keys": ["shift+f6"], "command": "expand_fqcn", "args": {"leading_separator": true} }, | |
{ "keys": ["f5"], "command": "find_use" }, | |
{ "keys": ["f4"], "command": "import_namespace" }, | |
{ "keys": ["shift+f12"], "command": "goto_definition_scope" }, | |
{ "keys": ["j", "j"], "command": "exit_insert_mode", | |
"context": | |
[ | |
{ "key": "setting.command_mode", "operand": false }, | |
{ "key": "setting.is_widget", "operand": false } | |
] | |
} | |
] |
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
[ | |
{ | |
"button": "button1", | |
"count": 1, | |
"modifiers": ["ctrl"], | |
"press_command": "drag_select", | |
"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
{ | |
"always_show_minimap_viewport": true, | |
"bold_folder_labels": true, | |
"color_scheme": "Packages/Material Theme/schemes/Material-Theme.tmTheme", | |
"draw_minimap_border": true, | |
"font_face": "Meslo LG L", | |
"font_options": | |
[ | |
"gray_antialias" | |
], | |
"font_size": 12, | |
"hot_exit": false, | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"indent_guide_options": | |
[ | |
"draw_normal", | |
"draw_active" | |
], | |
"line_numbers": false, | |
"line_padding_bottom": 6, | |
"line_padding_top": 6, | |
"overlay_scroll_bars": "enabled", | |
"remember_open_files": false, | |
"rulers": | |
[ | |
120 | |
], | |
"tab_size": 4, | |
"theme": "Material-Theme.sublime-theme", | |
"translate_tabs_to_spaces": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment