Created
October 24, 2016 17:28
-
-
Save thadeu/b22bf4a8ed9869244a13e25e58e0ff7a to your computer and use it in GitHub Desktop.
User Setting - Visual Studio Code
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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