Last active
September 26, 2016 21:07
-
-
Save sanderhouttekier/5143739 to your computer and use it in GitHub Desktop.
Sublime Project File #snippet #sublimetext
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
{ | |
"folders": | |
[ | |
// add paths per directory you want to show | |
{ | |
// relative paths to the root | |
"path": "/", | |
// optionally give it a different name | |
"name": "My Project", | |
// possible folders to exclude | |
"folder_exclude_patterns": [ | |
"node_modules", | |
".sass-cache", | |
"_docs", | |
"_nosql", | |
"images" | |
], | |
// possible files to exclude | |
"file_exclude_patterns": [ | |
"._*", | |
"*.ico", | |
"*.swf", | |
"*.tar", | |
"*.zip", | |
"*.7z", | |
"*.rar", | |
"*.sublime-workspace", | |
".ghignore", | |
".gitignore" | |
] | |
} | |
], | |
"settings": | |
{ | |
"tab_size": 4, | |
"translate_tabs_to_spaces": true | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment