Last active
March 17, 2022 00:57
-
-
Save Ambratolm/0ee07a5f9fd2649373635c9f44d4fbaf to your computer and use it in GitHub Desktop.
Sublime Text project settings to hide some rarely used files and folders from the side bar (With snippet).
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
{ | |
"folders": | |
[ | |
{ | |
"path": ".", | |
"folder_exclude_patterns": [ | |
"node_modules" | |
], | |
"file_exclude_patterns": [ | |
"*.sublime-*", | |
".git*", | |
".babel*", | |
".eslint*", | |
".env*", | |
"package-lock.json", | |
"LICENSE", | |
"Procfile", | |
"icon.png" | |
] | |
} | |
] | |
} |
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
<snippet> | |
<content><![CDATA[ | |
{ | |
"folders": | |
[ | |
{ | |
"path": ".", | |
"folder_exclude_patterns": [ | |
"node_modules" | |
], | |
"file_exclude_patterns": [ | |
"*.sublime-*", | |
".git*", | |
".babel*", | |
".eslint*", | |
".env*", | |
"package-lock.json", | |
"LICENSE", | |
"Procfile", | |
"icon.png" | |
] | |
} | |
] | |
} | |
]]></content> | |
<tabTrigger>sublime-project</tabTrigger> | |
<scope>source.json</scope> | |
</snippet> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment