Last active
November 21, 2017 09:43
-
-
Save MoritzBuetzer/0391b0d7233213615a71 to your computer and use it in GitHub Desktop.
Sublime Text 3 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
[ | |
{ | |
"keys": ["super+shift+e"], "command": "run_macro_file", "args": {"file": "Packages/Default/Delete Line.sublime-macro"}, | |
"keys": ["super+shift+p"], "command": "prompt_select_workspace", | |
"keys": ["ctrl+shift+p"], "command": "show_overlay", "args": {"overlay": "command_palette"} | |
} | |
] |
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": ["ctrl+shift+e"], "command": "run_macro_file", "args": {"file": "Packages/Default/Delete Line.sublime-macro"} }, | |
{ "keys": ["ctrl+shift+o"], "command": "prompt_open_folder" } | |
] |
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_prompt_for_file_reload": true, | |
"copy_with_empty_selection": false, | |
"draw_white_space": "all", | |
"file_exclude_patterns": | |
[ | |
"*.pyc", | |
"*.pyo", | |
"*.exe", | |
"*.dll", | |
"*.obj", | |
"*.o", | |
"*.a", | |
"*.lib", | |
"*.so", | |
"*.dylib", | |
"*.ncb", | |
"*.sdf", | |
"*.suo", | |
"*.pdb", | |
"*.idb", | |
".DS_Store", | |
"*.class", | |
"*.psd", | |
"*.db", | |
"*.sublime-workspace", | |
"*.classpath", | |
"*.jar" | |
], | |
"folder_exclude_patterns": | |
[ | |
".svn", | |
".git", | |
".hg", | |
"CVS", | |
".gradle", | |
".idea", | |
"node_modules", | |
".sass-cache", | |
".settings", | |
"root/error", | |
"root/admin", | |
"root/upload", | |
"work/src", | |
"work/test", | |
"work/navision", | |
"work/torque" | |
], | |
"font_size": 16, | |
"highlight_line": true, | |
"highlight_modified_tabs": true, | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"index_files": false, | |
"show_encoding": true, | |
"show_tab_close_buttons": false, | |
"translate_tabs_to_spaces": true, | |
"tree_animation_enabled": false, | |
"word_separators": "./\\()\"':,.;<>~!@#%^&*|+=[]{}`~?", | |
"on_pre_save_language": [ | |
{ | |
"command": "css_comb" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment