Created
May 23, 2020 23:38
-
-
Save vssn/c1d50a76dfc3e6747afb22eca2d57a07 to your computer and use it in GitHub Desktop.
VS Code Color and Telemetry defaults
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
// VS Code Settings | |
{ | |
"workbench.colorTheme": "White Italic Night", | |
"window.autoDetectColorScheme": true, | |
"workbench.preferredDarkColorTheme": "White Italic Night", | |
"workbench.preferredLightColorTheme": "White Italic", | |
"workbench.preferredHighContrastColorTheme": "White Italic", | |
"telemetry.enableCrashReporter": false, | |
"telemetry.enableTelemetry": false, | |
"gitlens.advanced.telemetry.enabled": false, | |
"workbench.colorCustomizations": { | |
"[White Italic Night]": {} | |
} | |
} | |
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
// VS Code Workspace specific | |
// in your | |
// .vscode/settings.json | |
{ | |
"workbench.colorCustomizations": { | |
"activityBar.background": "#a82546", | |
"activityBar.foreground": "#fff" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment