mirror of https://github.com/turtlebasket/env
20 lines
386 B
Markdown
20 lines
386 B
Markdown
# VSCode Config
|
|
|
|
| Platform | Config Path |
|
|
| --- | --- |
|
|
| macOS | `/Users/michael/Library/Application Support/VSCodium/User` |
|
|
|
|
## Theme Customizations
|
|
|
|
Red titlebar to distinguish VSCode windows (Codium preferred):
|
|
|
|
```json
|
|
"workbench.colorCustomizations": {
|
|
"[Default Dark+]": {
|
|
"titleBar.activeBackground": "#aa5555",
|
|
"titleBar.inactiveBackground": "#883333"
|
|
}
|
|
}
|
|
```
|
|
|