Last active
December 30, 2024 06:18
-
-
Save night-fury-rider/ead055d1767327f4db3e3b72835ad939 to your computer and use it in GitHub Desktop.
Visual Studio Code - Settings
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
{ | |
"[jsonc]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[typescript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"diffEditor.ignoreTrimWhitespace": false, | |
"editor.codeActionsOnSave": {}, | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.detectIndentation": false, | |
"editor.formatOnSave": true, | |
"editor.gotoLocation.multipleDefinitions": "goto", | |
"editor.insertSpaces": true, | |
"editor.renderWhitespace": "all", | |
"editor.tabSize": 2, | |
"git.confirmSync": false, | |
"git.autoRepositoryDetection": "openEditors", | |
"gitlens.views.scm.grouped.views": { | |
"commits": false, | |
"branches": true, | |
"remotes": true, | |
"stashes": false, | |
"tags": true, | |
"worktrees": true, | |
"contributors": true, | |
"repositories": false, | |
"searchAndCompare": false, | |
"launchpad": false | |
}, | |
"gitlens.views.stashes.files.layout": "list", | |
"prettier.bracketSpacing": true, | |
"telemetry.telemetryLevel": "off", | |
"typescript.enablePromptUseWorkspaceTsdk": true, | |
"window.confirmBeforeClose": "always", | |
"window.zoomLevel": 0, | |
"workbench.colorCustomizations": { | |
"editorUnnecessaryCode.border": "#ff0000" | |
}, | |
"workbench.editor.enablePreview": false, | |
"workbench.startupEditor": "none" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment