Skip to content

Instantly share code, notes, and snippets.

@thadeu
Created October 24, 2016 17:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thadeu/b22bf4a8ed9869244a13e25e58e0ff7a to your computer and use it in GitHub Desktop.
Save thadeu/b22bf4a8ed9869244a13e25e58e0ff7a to your computer and use it in GitHub Desktop.
User Setting - Visual Studio Code
// Place your settings in this file to overwrite the default settings
{
// The number of spaces a tab is equal to.
"editor.tabSize": 2,
// Controls if the editor will insert spaces for tabs.
// If set to auto, the value will be guessed based on the opened file.
"editor.insertSpaces": false,
// Controls whether the editor should render whitespace characters
"editor.renderWhitespace": true,
"editor.detectIndentation": true,
"search.exclude": {
"**/.git": true,
"**/node_modules": true,
"**/bower_components": true,
"**/tmp": true,
"**/.bundle": true,
"**/.vscode": true,
"**/log": true,
"**/test": true,
"**/vendor": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment