From f4093a07e37d9461d62ab076866c83680b07074d Mon Sep 17 00:00:00 2001 From: zackees Date: Mon, 4 Dec 2023 11:53:43 -0800 Subject: [PATCH] now use git-bash by default for new terminal creation --- .vscode/settings.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.vscode/settings.json b/.vscode/settings.json index 8f1ebdd..2870096 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -5,6 +5,12 @@ "python.venvFolders": [ "${workspaceFolder}/venv", ], + "terminal.integrated.defaultProfile.windows": "Git Bash", + "terminal.integrated.profiles.windows": { + "Git Bash": { + "path": "C:\\Program Files\\Git\\bin\\bash.exe" + } + }, "python.terminal.activateEnvInCurrentTerminal": true, "python.defaultInterpreterPath": "${workspaceFolder}/venv/bin/python", "python.terminal.activateEnvironment": true,