Skip to content

Instantly share code, notes, and snippets.

@artem-bondar
Created November 23, 2019 12:28
Show Gist options
  • Save artem-bondar/83f89668018b34d046dd5b1be48526ae to your computer and use it in GitHub Desktop.
Save artem-bondar/83f89668018b34d046dd5b1be48526ae to your computer and use it in GitHub Desktop.
Unity Visual Studio Code settings
{
"files.exclude": {
// Unity3D generated files
"Library/": true,
"library/": true,
"Temp/": true,
"temp/": true,
"Obj/": true,
"obj/": true,
"Build/": true,
"build/": true,
"Builds/": true,
"builds/": true,
// Unity3D generated meta files
"ProjectSettings/": true,
"**/*.meta": true,
"**/*.prefab": true,
"**/*.unity": true,
// Autogenerated VS/MD/Consulo solution and project files
".consulo/": true,
"**/*.unityproj": true,
"**/*.suo": true,
"**/*.tmp": true,
"**/*.user": true,
"**/*.userprefs": true,
"**/*.pidb": true,
"**/*.booproj": true,
"**/*.svd": true,
"**/*.pdb": true,
"**/*.opendb": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment