Last active
March 13, 2020 23:43
-
-
Save lukethacoder/eecfc34c9c2bc63e87947d55d5b8b786 to your computer and use it in GitHub Desktop.
VS Code Workspace Settings
This file contains 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
{ | |
"folders": [ | |
{ | |
"path": "C:\\Github\\PROJECT_NAME" | |
} | |
], | |
"settings": { | |
"workbench.colorCustomizations": { | |
"titleBar.activeBackground": "#141415", | |
"titleBar.activeForeground": "#FFC87F", | |
"titleBar.inactiveBackground": "#696969", | |
"titleBar.inactiveForeground": "#FFC87F" | |
}, | |
"search.exclude": { | |
".cache": true, | |
".vscode": true, | |
"node_modules": true, | |
}, | |
"window.title": "${rootName}", | |
"editor.cursorSmoothCaretAnimation": true | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment