Skip to content

Instantly share code, notes, and snippets.

@kunzimariano
Last active December 16, 2016 17:07
Show Gist options
  • Save kunzimariano/2fef917f58b58663047bc6e4c082b6d5 to your computer and use it in GitHub Desktop.
Save kunzimariano/2fef917f58b58663047bc6e4c082b6d5 to your computer and use it in GitHub Desktop.
Visual Studio Code Configurations
//user
// Place your settings in this file to overwrite the default settings
{
// Controls the font size.
"editor.fontSize": 17,
// The number of spaces a tab is equal to.
"editor.tabSize": 2,
// Controls whether the editor should render whitespace characters
"editor.renderWhitespace": true,
// Controls whether the editor should render control characters
"editor.renderControlCharacters": true,
// Controls whether the editor should render indent guides
"editor.renderIndentGuides": true,
// Number of editors shown in the Open Editors pane. Set it to 0 to hide the pane.
"explorer.openEditors.visible": 0,
// Controls if opened editors from quick open show as preview. Preview editors are reused until they are kept (e.g. via double click or editing).
"workbench.editor.enablePreviewFromQuickOpen": false,
// Defines space handling after keywords in control flow statement
"javascript.format.insertSpaceAfterKeywordsInControlFlowStatements": true,
// Defines space handling after function keyword for anonymous functions
"javascript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": false
}
//workspace
// Place your settings in this file to overwrite default and user settings.
{
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/coverage": true
},
"html.format.endWithNewline": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment