Last active
September 22, 2021 18:04
-
-
Save BonneVoyager/cc76b371f5ba90a8905a990a0ecb4797 to your computer and use it in GitHub Desktop.
VSCode 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
| { | |
| "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