Created
December 17, 2013 17:37
-
-
Save supawaza/8009192 to your computer and use it in GitHub Desktop.
Hide hidden files inside Sublime Text such as .DS_Store or any cache files. Hit Cmd+, to open up the setting and paste the following line in. Source: https://coderwall.com/p/znswpq --- #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
{ | |
"file_exclude_patterns": | |
[ | |
"*.svn", | |
"*.git", | |
"*.hg", | |
"CVS", | |
"*tmp/cache", | |
"*._*", | |
"*.DS_Store" | |
], | |
"folder_exclude_patterns": | |
[ | |
".sass-cache", | |
".svn", | |
".git" | |
], | |
"font_size": 14.0, | |
"ignored_packages": | |
[ | |
"Vintage" | |
] | |
} |
Thanks
Thank you!
Thank you!
Thanks!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks.