Skip to content

Instantly share code, notes, and snippets.

@darkoverlordofdata
Created November 19, 2015 05:57
Show Gist options
  • Save darkoverlordofdata/bca0be5c43b2f4858f4c to your computer and use it in GitHub Desktop.
Save darkoverlordofdata/bca0be5c43b2f4858f4c to your computer and use it in GitHub Desktop.
VS.Code Settings for Unity
// Place your settings in this file to overwrite the default settings
{
"files.exclude": {
// start unity files
"policy.mdpolicy": true,
"Assets/Libraries": true,
"Assets/Plugins": true,
"Assets/Resources": true,
"ProjectSettings/": true,
"Temp/": true,
"Library/": true,
"**/*.asset": true,
"**/*.prefab": true,
"**/*.unity": true,
"**/*dll": true,
"**/*.exe": true,
"**/*mdb": true,
"**/*.meta": true,
// end unity files
"**/.git": true,
"**/.DS_Store": true,
"**/.idea": true
},
"editor.tabSize": "auto",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment