Skip to content

Instantly share code, notes, and snippets.

@BonneVoyager
Last active September 22, 2021 18:04
Show Gist options
  • Select an option

  • Save BonneVoyager/cc76b371f5ba90a8905a990a0ecb4797 to your computer and use it in GitHub Desktop.

Select an option

Save BonneVoyager/cc76b371f5ba90a8905a990a0ecb4797 to your computer and use it in GitHub Desktop.
VSCode Settings
{
"editor.fontSize": 14,
"editor.tabSize": 2,
"editor.lineHeight": 25,
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"editor.insertSpaces": true,
"editor.renderWhitespace": "none",
"editor.cursorStyle": "block",
"editor.cursorBlinking": "solid",
"editor.rulers": [120],
"editor.autoClosingBrackets": "never",
"editor.minimap.enabled": false,
"workbench.editor.showTabs": true,
"workbench.editor.highlightModifiedTabs": true,
"workbench.colorTheme": "Default Dark+",
"workbench.iconTheme": "material-icon-theme",
"workbench.statusBar.visible": true,
"window.title": "${activeEditorLong}${separator}${rootName}",
"git.enableSmartCommit": true,
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/.vscode": true,
"**/.idea": true
},
"workbench.colorCustomizations": {
"statusBar.background": "#1A1A1A",
"statusBar.noFolderBackground": "#0A0A0D",
"statusBar.debuggingBackground": "#511f1f"
},
"telemetry.enableTelemetry": false,
"telemetry.enableCrashReporter": false,
"gitlens.advanced.telemetry.enabled": false,
"gitlens.advanced.messages": {
"suppressShowKeyBindingsNotice": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment