Last active
November 26, 2018 16:50
-
-
Save JulienSansot/aedfd6855ed5110bd408 to your computer and use it in GitHub Desktop.
sublime text settings
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
| { | |
| "auto_match_enabled": false, | |
| "detect_indentation": false, | |
| "ignored_packages": | |
| [ | |
| "Vintage" | |
| ], | |
| "show_full_path": true, | |
| "tab_size": 2, | |
| "trim_trailing_white_space_on_save": true, | |
| "ensure_newline_at_eof_on_save": true, | |
| "translate_tabs_to_spaces": true, | |
| // folder_exclude_patterns and file_exclude_patterns control which files | |
| // are listed in folders on the side bar. These can also be set on a per- | |
| // project basis. | |
| "folder_exclude_patterns": [".svn", ".git", ".hg", "CVS"], // commenting out as I want to see these | |
| "file_exclude_patterns": [".pyc", ".pyo", ".exe", ".dll", ".obj",".o", ".a", ".lib", ".so", ".dylib", ".ncb", ".sdf", ".suo", ".pdb", ".idb", ".DS_Store", ".class", ".psd", ".db"], | |
| // These files will still show up in the side bar, but won't be included in | |
| // Goto Anything or Find in Files | |
| "binary_file_patterns": [".jpg", ".jpeg", ".png", ".gif", ".ttf", ".tga", ".dds", ".ico", ".eot", ".pdf", ".swf", ".jar", "*.zip", "vendor/**", "node_modules/**", ".certs/**"] // notice the last 3 items 'vendor/**' etc... this is the magic. | |
| } | |
| //Key bindings: | |
| [ | |
| { "keys": ["ctrl+shift+q"], "command": "reveal_in_side_bar"} | |
| ] | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment