Skip to content

Instantly share code, notes, and snippets.

@jaywick
Last active June 9, 2017 12:58
Show Gist options
  • Save jaywick/6047009fcaeb83a8ca9a7ce26217ff39 to your computer and use it in GitHub Desktop.
Save jaywick/6047009fcaeb83a8ca9a7ce26217ff39 to your computer and use it in GitHub Desktop.
VSCode Settings
{
"editor.quickSuggestionsDelay": 0,
"files.exclude": {
"**/.git": true,
"**/.DS_Store": true,
"**/*.js.map": true,
"**/node_modules": true,
"**/typings": true,
"**/*.js": {
"when": "$(basename).ts"
}
},
"editor.tabSize": 4,
"explorer.openEditors.visible": 0,
"editor.autoClosingBrackets": false,
"problems.autoReveal": true,
"editor.roundedSelection": false,
"window.openFilesInNewWindow": "on",
"files.associations": {
"*.linq": "csharp",
"*.build": "xml",
"*.aes": "yaml"
},
"editor.mouseWheelZoom": true,
"telemetry.enableTelemetry": false,
"telemetry.enableCrashReporter": false,
"window.zoomLevel": 0,
"git.confirmSync": false,
"workbench.activityBar.visible": true,
"window.menuBarVisibility": "toggle",
"workbench.colorTheme": "Nord",
"workbench.iconTheme": "vscode-icon-theme",
"editor.minimap.enabled": true,
"editor.minimap.renderCharacters": false,
"debug.inlineValues": true,
"gitlens.blame.annotation.activeLine": "off",
"extension-manager.extensions": [
"alefragnani.Bookmarks",
"arcticicestudio.nord-visual-studio-code",
"be5invis.vscode-icontheme-nomo-dark",
"codezombiech.gitignore",
"davidbabel.vscode-simpler-icons",
"donjayamanne.python",
"eamodio.gitlens",
"eg2.ts-tslint",
"jtlowe.vscode-icon-theme",
"magicstack.MagicPython",
"ms-vscode.csharp",
"msjsdiag.debugger-for-chrome",
"QassimFarid.ejs-language-support",
"Tobiah.unity-tools",
"Unity.unity-debug",
"webstp.extension-manager"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment