Skip to content

Instantly share code, notes, and snippets.

@antpaw
Last active April 13, 2020 10:35
Show Gist options
  • Save antpaw/473edc8266cf006b2ecbd68e685d0a03 to your computer and use it in GitHub Desktop.
Save antpaw/473edc8266cf006b2ecbd68e685d0a03 to your computer and use it in GitHub Desktop.
Unity default config .vscode dir
{
// See http://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations.
// Extension identifier format: ${publisher}.${name}. Example: vscode.csharp
// List of extensions which should be recommended for users of this workspace.
"recommendations": [
"ms-dotnettools.csharp",
"leopotam.csharpfixformat",
"streetsidesoftware.code-spell-checker",
"unity.unity-debug",
"editorconfig.editorconfig",
"nhoizey.gremlins",
"stubailo.ignore-gitignore",
"ptd.vscode-unitymeta",
"fabiospampinato.vscode-todo-plus"
],
// List of extensions recommended by VS Code that should not be recommended for users of this workspace.
"unwantedRecommendations": []
}
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Unity Editor",
"type": "unity",
"request": "launch"
},
{
"name": "Windows Player",
"type": "unity",
"request": "launch"
},
{
"name": "OSX Player",
"type": "unity",
"request": "launch"
},
{
"name": "Linux Player",
"type": "unity",
"request": "launch"
},
{
"name": "iOS Player",
"type": "unity",
"request": "launch"
},
{
"name": "Android Player",
"type": "unity",
"request": "launch"
}
]
}
{
"editor.formatOnSave": true,
"csharpfixformat.style.braces.onSameLine": false,
"csharpfixformat.style.spaces.beforeParenthesis": false,
"csharp.referencesCodeLens.enabled": false,
"csharpfixformat.style.newline.atEnd": true,
"search.exclude": {
"**/.DS_Store": true,
"**/.git": true,
"**/.gitignore": true,
"**/.gitmodules": true,
"**/*.booproj": true,
"**/*.pidb": true,
"**/*.suo": true,
"**/*.user": true,
"**/*.userprefs": true,
"**/*.unityproj": true,
"**/*.dll": true,
"**/*.exe": true,
"**/*.pdf": true,
"**/*.mid": true,
"**/*.midi": true,
"**/*.wav": true,
"**/*.gif": true,
"**/*.ico": true,
"**/*.jpg": true,
"**/*.jpeg": true,
"**/*.png": true,
"**/*.psd": true,
"**/*.tga": true,
"**/*.tif": true,
"**/*.tiff": true,
"**/*.ttf": true,
"**/*.otf": true,
"**/*.3ds": true,
"**/*.3DS": true,
"**/*.fbx": true,
"**/*.FBX": true,
"**/*.lxo": true,
"**/*.LXO": true,
"**/*.ma": true,
"**/*.MA": true,
"**/*.obj": true,
"**/*.OBJ": true,
"**/*.cubemap": true,
"**/*.flare": true,
"**/*.mat": true,
"**/*.meta": true,
"**/*.prefab": true,
"**/*.unity": true,
"**/*SDF.asset": true,
"build/": true,
"Build/": true,
"Library/": true,
"library/": true,
"obj/": true,
"Obj/": true,
"ProjectSettings/": true,
"temp/": true,
"Temp/": true
},
"files.exclude": {
"**/.DS_Store": true,
"**/.git": true,
"**/.gitignore": true,
"**/.gitmodules": true,
"**/*.booproj": true,
"**/*.pidb": true,
"**/*.suo": true,
"**/*.user": true,
"**/*.userprefs": true,
"**/*.unityproj": true,
"**/*.dll": true,
"**/*.exe": true,
"**/*.pdf": true,
"**/*.mid": true,
"**/*.midi": true,
"**/*.wav": true,
"**/*.gif": true,
"**/*.ico": true,
"**/*.jpg": true,
"**/*.jpeg": true,
"**/*.png": true,
"**/*.psd": true,
"**/*.tga": true,
"**/*.tif": true,
"**/*.tiff": true,
"**/*.ttf": true,
"**/*.otf": true,
"**/*.3ds": true,
"**/*.3DS": true,
"**/*.fbx": true,
"**/*.FBX": true,
"**/*.lxo": true,
"**/*.LXO": true,
"**/*.ma": true,
"**/*.MA": true,
"**/*.obj": true,
"**/*.OBJ": true,
"**/*.cubemap": true,
"**/*.flare": true,
"**/*.mat": true,
"**/*.meta": true,
"**/*.prefab": true,
"**/*.unity": true,
"**/*SDF.asset": true,
"build/": true,
"Build/": true,
"Library/": true,
"library/": true,
"obj/": true,
"Obj/": true,
"ProjectSettings/": true,
"temp/": true,
"Temp/": true
},
"cSpell.enableFiletypes": [
"c",
"cpp",
"csharp",
"css",
"go",
"handlebars",
"html",
"jade",
"javascript",
"javascriptreact",
"json",
"latex",
"less",
"markdown",
"php",
"plaintext",
"pub",
"python",
"restructuredtext",
"rust",
"scss",
"text",
"todo",
"typescript",
"typescriptreact",
"yml"
],
"cSpell.words": [
"Behaviour",
"GAMEDAY",
"Graphy",
"Koin",
"Scroller",
"Tayx",
"Tweens",
"altool",
"antons",
"blit",
"gameloop",
"hexa",
"penta",
"resizer",
"scriptable",
"xcrun"
],
"files.associations": {
"*.asset": "yaml"
},
"workbench.colorTheme": "Monokai Dimmed",
"workbench.colorCustomizations": {
"editorGutter.background": "#181818",
"editor.background": "#111"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment