Skip to content

Instantly share code, notes, and snippets.

@Ambratolm
Last active March 17, 2022 00:57
Show Gist options
  • Save Ambratolm/0ee07a5f9fd2649373635c9f44d4fbaf to your computer and use it in GitHub Desktop.
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).
{
"folders":
[
{
"path": ".",
"folder_exclude_patterns": [
"node_modules"
],
"file_exclude_patterns": [
"*.sublime-*",
".git*",
".babel*",
".eslint*",
".env*",
"package-lock.json",
"LICENSE",
"Procfile",
"icon.png"
]
}
]
}
<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