User settings for Visual Studio Code
These are some of the User Settings I change in Visual Studio Code:
{
// firewalls in some organizations causes the extension download to fail
"http.proxyStrictSSL": false,
// a good way to see those useless white spaces
"editor.renderWhitespace": "boundary",
// not a fan of minimap. code files shouldn't be too long to need a minimap
"editor.minimap.enabled": false,
// why not?!
"editor.codeLens": true,
"typescript.referencesCodeLens.enabled": true,
"typescript.implementationsCodeLens.enabled": true,
// with the default title it's hard to distinguish between multiple open insutances
"window.title": "${rootName}${separator}${activeEditorShort} ${dirty}",
// can cause frustration with Angular projects that auto reload when a file is saved
"files.autoSave": "off",
}