Created
November 19, 2015 05:57
-
-
Save darkoverlordofdata/bca0be5c43b2f4858f4c to your computer and use it in GitHub Desktop.
VS.Code Settings for Unity
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
// 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