Skip to content

Instantly share code, notes, and snippets.

@night-fury-rider
Last active December 30, 2024 06:18
Show Gist options
  • Save night-fury-rider/ead055d1767327f4db3e3b72835ad939 to your computer and use it in GitHub Desktop.
Save night-fury-rider/ead055d1767327f4db3e3b72835ad939 to your computer and use it in GitHub Desktop.
Visual Studio Code - Settings
{
"[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