BTerminal/.vscode/settings.json
Hibryda 7d4e5a33c9 chore: add VS Code workspace config with Peacock color
- launch.json: Python debugpy for bterminal.py
- tasks.json: run and install tasks
- settings.json: Peacock green workspace color, Python type checking
2026-03-05 23:14:39 +01:00

40 lines
1.3 KiB
JSON

{
"workbench.colorCustomizations": {
"activityBar.activeBackground": "#435746",
"activityBar.background": "#435746",
"activityBar.foreground": "#e7e7e7",
"activityBar.inactiveForeground": "#e7e7e799",
"activityBarBadge.background": "#1f1848",
"activityBarBadge.foreground": "#e7e7e7",
"commandCenter.border": "#e7e7e799",
"sash.hoverBorder": "#435746",
"statusBar.background": "#2d3a2f",
"statusBar.foreground": "#e7e7e7",
"statusBarItem.hoverBackground": "#435746",
"statusBarItem.remoteBackground": "#2d3a2f",
"statusBarItem.remoteForeground": "#e7e7e7",
"titleBar.activeBackground": "#2d3a2f",
"titleBar.activeForeground": "#e7e7e7",
"titleBar.inactiveBackground": "#2d3a2f99",
"titleBar.inactiveForeground": "#e7e7e799"
},
"peacock.color": "#2d3a2f",
"editor.formatOnSave": true,
"editor.tabSize": 4,
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"files.exclude": {
"**/.git": true,
"**/.DS_Store": true,
"**/node_modules": true,
"**/__pycache__": true,
"**/.pytest_cache": true
},
"search.exclude": {
"**/node_modules": true,
"**/dist": true,
"**/build": true,
"**/.git": true
},
"python.analysis.typeCheckingMode": "basic"
}