Last active
December 28, 2015 15:09
-
-
Save dozoisch/7519497 to your computer and use it in GitHub Desktop.
Just my Sublime Text 3 config 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
{ | |
"completion_active_list": { | |
"css-properties": true, | |
"html": true, | |
"lodash": true, | |
"javascript": 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
[ | |
{ "keys": ["ctrl+shift+s"], "command": "save_all" }, | |
{ "keys": ["ctrl+alt+shift+s"], "command": "prompt_save_as" }, | |
{ "keys": ["ctrl+tab"], "command": "next_view" }, | |
{ "keys": ["ctrl+shift+tab"], "command": "prev_view" }, | |
{ "keys": ["ctrl+pagedown"], "command": "next_view_in_stack" }, | |
{ "keys": ["ctrl+pageup"], "command": "prev_view_in_stack" }, | |
{ "keys": ["ctrl+shift+f"], "command": "reindent"}, | |
{ "keys": ["ctrl+shift+c"], "command": "toggle_comment", "args": { "block": false } }, | |
{ "keys": ["ctrl+shift+q"], "command": "exit" }, | |
{ "keys": ["ctrl+q"], "command": "switch_file", "args": {"extensions": ["cpp", "cxx", "cc", "c", "hpp", "hxx", "h", "ipp", "inl", "m", "mm"]} }, | |
{ "keys": ["ctrl+e"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete Line.sublime-macro"} }, | |
{ "keys": ["alt+shift+t"], "command": "todo", "args": {"open_files_only": false} } | |
] |
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": ["super+shift+s"], "command": "save_all" }, | |
{ "keys": ["super+alt+shift+s"], "command": "prompt_save_as" }, | |
{ "keys": ["ctrl+shift+pageup"], "command": "select_lines", "args": {"forward": false} }, | |
{ "keys": ["ctrl+shift+pagedown"], "command": "select_lines", "args": {"forward": true} }, | |
{ "keys": ["super+shift+c"], "command": "toggle_comment", "args": { "block": false } }, | |
{ "keys": ["super+e"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete Line.sublime-macro"} }, | |
{ "keys": ["ctrl+r"], "command": "switch_file", "args": {"extensions": ["cpp", "cxx", "cc", "c", "hpp", "hxx", "h", "ipp", "inl", "m", "mm", "js", "less"]} }, | |
{ "keys": ["ctrl+s"], "command": "reveal_in_side_bar"} | |
] | |
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
{ | |
"in_process_packages": | |
[ | |
], | |
"installed_packages": | |
[ | |
"Babel", | |
"Better Completion", | |
"Jade", | |
"LESS", | |
"Package Control", | |
"ReactJS", | |
"TodoReview" | |
], | |
"repositories": | |
[ | |
"https://github.com/dnatag/SublimeTODO" | |
] | |
} |
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
{ | |
"always_show_minimap_viewport": true, | |
"auto_complete_commit_on_tab": true, | |
"close_windows_when_empty": false, | |
"color_scheme": "Packages/Babel/Monokai Phoenix.tmTheme", | |
"ensure_newline_at_eof_on_save": true, | |
"find_selected_text": true, | |
"font_size": 11, | |
"highlight_line": true, | |
"highlight_modified_tabs": true, | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"rulers": | |
[ | |
80, | |
120 | |
], | |
"scroll_past_end": true, | |
"shift_tab_unindent": true, | |
"show_full_path": true, | |
"show_tab_close_buttons": false, | |
"tab_size": 2, | |
"todo": | |
{ | |
"folder_exclude_patterns": | |
[ | |
"node_modules", | |
"bower_components" | |
], | |
"patterns": | |
{ | |
"HDC": "HDC[\\s]*?:+(?P<hdc>.*)$" | |
}, | |
"result_title": "TODO List" | |
}, | |
"translate_tabs_to_spaces": true, | |
"trim_trailing_white_space_on_save": 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
{ | |
"patterns": { | |
"TODO": "TODO[\\s]*?:?[\\s]*(?P<todo>.*)$" | |
}, | |
"patterns_weight": { | |
}, | |
"exclude_folders": [ | |
"*.git*", | |
"*node_modules*", | |
"*build*", | |
"*public*", | |
"*reports*", | |
"*shippable*", | |
], | |
"exclude_files": [ | |
"*.sublime-workspace", | |
"*.sublime-project", | |
"*.log" | |
], | |
"case_sensitive": false, | |
"render_include_folder": true, | |
"render_folder_depth": 3, | |
"render_maxspaces": 50, | |
"render_header_format": "%d - %c files in %t secs", | |
"render_header_date": "%A %m/%d/%y at %I:%M%p", | |
"navigation_forward_skip" : 10, | |
"navigation_backward_skip" : 10 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment