Last active
December 6, 2018 08:50
-
-
Save geekoff7/d0fadae2290ea50a09061515df0f3bb1 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
{ | |
"breadcrumbs.enabled": true, | |
"window.zoomLevel": 3, | |
"workbench.statusBar.visible": true, | |
"workbench.activityBar.visible": false, | |
"workbench.startupEditor": "newUntitledFile", | |
"files.autoSave": "afterDelay", | |
"explorer.confirmDelete": false, | |
"terminal.integrated.shell.linux": "/usr/bin/zsh", | |
"terminal.integrated.showExitAlert": false, | |
"C_Cpp.clang_format_path": "/usr/bin/clang-format", | |
"go.autocompleteUnimportedPackages": true, | |
"java.home": "/usr/lib/jvm/jdk-11.0.1", | |
"java.autobuild.enabled": true, | |
"workbench.colorCustomizations": { | |
"statusBar.background" : "#1A1A1A", | |
"statusBar.noFolderBackground" : "#212121", | |
"statusBar.debuggingBackground": "#263238" | |
}, | |
"editor.renderControlCharacters": true, | |
"editor.renderWhitespace": "none", | |
"editor.minimap.enabled": false, | |
"window.menuBarVisibility": "toggle", | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment