From 9b43b9c7aa124403de5c626d160595691ff993c4 Mon Sep 17 00:00:00 2001 From: YvesBos Date: Thu, 6 Feb 2025 11:11:11 +0100 Subject: [PATCH] feat: configure Pycharm shell path. --- .../.devcontainer/devcontainer.json | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/{{ cookiecutter.__project_name_kebab_case }}/.devcontainer/devcontainer.json b/{{ cookiecutter.__project_name_kebab_case }}/.devcontainer/devcontainer.json index 0ee5393..d7c375e 100644 --- a/{{ cookiecutter.__project_name_kebab_case }}/.devcontainer/devcontainer.json +++ b/{{ cookiecutter.__project_name_kebab_case }}/.devcontainer/devcontainer.json @@ -11,7 +11,10 @@ "backend": "PyCharm", "plugins": [ "com.github.copilot" - ] + ], + "settings": { + "org.jetbrains.plugins.terminal:app:TerminalOptionsProvider.myShellPath": "/usr/bin/zsh" + } }, "vscode": { "extensions": [ @@ -76,4 +79,4 @@ } } } -} \ No newline at end of file +}