Skip to content

Instantly share code, notes, and snippets.

@acbrent25
Last active March 12, 2018 19:07
Show Gist options
  • Select an option

  • Save acbrent25/76c051da2b49ae772d74488c0213ec6c to your computer and use it in GitHub Desktop.

Select an option

Save acbrent25/76c051da2b49ae772d74488c0213ec6c to your computer and use it in GitHub Desktop.
[VS Code Set tab space] #vscode
// The number of spaces a tab is equal to. This setting is overriden
// based on the file contents when `editor.detectIndentation` is true.
"editor.tabSize": 4,
// Insert spaces when pressing Tab. This setting is overriden
// based on the file contents when `editor.detectIndentation` is true.
"editor.insertSpaces": true,
// When opening a file, `editor.tabSize` and `editor.insertSpaces`
// will be detected based on the file contents. Set to false to keep
// the values you've explicitly set, above.
"editor.detectIndentation": false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment