Skip to content

Instantly share code, notes, and snippets.

@zackschuster
Created April 1, 2023 00:23
Show Gist options
  • Save zackschuster/d1ae2b2a3f67b479f010e949eb26123d to your computer and use it in GitHub Desktop.
Save zackschuster/d1ae2b2a3f67b479f010e949eb26123d to your computer and use it in GitHub Desktop.
vscode settings
{
"breadcrumbs.enabled": false,
"debug.javascript.autoAttachFilter": "onlyWithFlag",
"debug.openDebug": "neverOpen",
"debug.saveBeforeStart": "none",
"debug.toolBarLocation": "docked",
"editor.codeActionsOnSave": {
"source.fixAll": true
},
"editor.copyWithSyntaxHighlighting": false,
"editor.detectIndentation": false,
"editor.folding": false,
"editor.fontFamily": "Fira Code",
"editor.insertSpaces": false,
"editor.minimap.renderCharacters": false,
"editor.tabSize": 2,
"workbench.editor.decorations.badges": false,
"workbench.editor.decorations.colors": false,
"files.trimTrailingWhitespace": true,
"git.enableSmartCommit": true,
"git.showActionButton": {
"commit": false,
"publish": false,
"sync": false
},
"html.format.indentInnerHtml": true,
"markdown.preview.markEditorSelection": false,
"explorer.decorations.badges": false,
"explorer.decorations.colors": false,
"references.preferredLocation": "view",
"scm.diffDecorations": "none",
"security.workspace.trust.enabled": false,
"task.quickOpen.showAll": true,
"typescript.disableAutomaticTypeAcquisition": true,
"telemetry.telemetryLevel": "off",
"window.nativeTabs": true,
"workbench.colorTheme": "Visual Studio Dark",
"workbench.editor.untitled.hint": "hidden",
"workbench.editor.untitled.labelFormat": "name",
"workbench.iconTheme": "vscode-icons",
"workbench.startupEditor": "none",
"workbench.tips.enabled": false,
// extensions
"vsicons.dontShowNewVersionMessage": true,
"vsicons.presets.hideExplorerArrows": true,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment