From 9c07262c230b4fe02a558486a78e4e48d1984d76 Mon Sep 17 00:00:00 2001 From: "Max P." Date: Sat, 12 Jul 2025 21:25:34 +0200 Subject: [PATCH] chore: Adds VS Code settings for Python and UI - Configures Python environment and analysis paths. - Customizes VS Code workbench colors for improved UI. --- .vscode/settings.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..89308d5 --- /dev/null +++ b/.vscode/settings.json @@ -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" +} \ No newline at end of file