Last active
March 30, 2022 15:27
-
-
Save asd123ea/b29dc0df7cd74b40687acd5a2eb9e82f to your computer and use it in GitHub Desktop.
my vscode settings.json
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
{ | |
"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