chore: Adds VS Code settings for Python and UI

- Configures Python environment and analysis paths.
- Customizes VS Code workbench colors for improved UI.
This commit is contained in:
2025-07-12 21:25:34 +02:00
parent c31905c43c
commit 9c07262c23

15
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,15 @@
{
"python.envFile": "${workspaceFolder}/.env",
"python.analysis.extraPaths": [
"src"
],
"workbench.colorCustomizations": {
"activityBar.activeBackground": "#a9e3ea",
"activityBar.background": "#a9e3ea",
"activityBar.foreground": "#15202b",
"activityBar.inactiveForeground": "#15202b99",
"activityBarBadge.background": "#d965cd",
"activityBarBadge.foreground": "#15202b"
},
"peacock.color": "#80d5e0"
}