Skip to content

Commit

Permalink
setting zsh as default shell in devcontainer.json/settings
Browse files Browse the repository at this point in the history
  • Loading branch information
DocMoebiuz committed Oct 24, 2022
1 parent be62df9 commit ae0c2fd
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,13 @@
"python.formatting.provider": "black",
"python.linting.banditEnabled": true,
"python.linting.flake8Enabled": true,
"python.disableInstallationCheck": true
"python.disableInstallationCheck": true,
"terminal.integrated.defaultProfile.linux": "zsh",
"terminal.integrated.profiles.linux": {
"zsh": {
"path": "/bin/zsh"
}
}
},
// workaround for the devcontainer features
"overrideCommand": false,
Expand Down

0 comments on commit ae0c2fd

Please sign in to comment.