Skip to content

Instantly share code, notes, and snippets.

@asd123ea
Last active March 30, 2022 15:27
Show Gist options
  • Save asd123ea/b29dc0df7cd74b40687acd5a2eb9e82f to your computer and use it in GitHub Desktop.
Save asd123ea/b29dc0df7cd74b40687acd5a2eb9e82f to your computer and use it in GitHub Desktop.
my vscode settings.json
{
"editor.tabSize": 2,
"[csharp]": {
"editor.insertSpaces": true,
"editor.tabSize": 4
},
"[javascript]": {
"editor.tabSize": 2
},
"[json]": {
"editor.tabSize": 2
},
// This one forces the tab to be **space**
"editor.insertSpaces": true,
"workbench.editor.enablePreview": false,
"explorer.autoReveal": false,
"editor.formatOnSave": 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