I've started setting up ZSH for VSCode. It worked for a small bit, but then it changed to Git Bash (my previous default shell). I tried changing the shell back to ZSH, but it didn't display in the list of opinions. Though, it does display WSL, which displays a completely different theme
My theme (in windows terminal, unbuntu, ect):
The theme that is in VSCode:
I've tried adding this to my settings.json
:
"terminal.integrated.shell.windows": "/bin/zsh",
But it says: "The terminal process failed to launch: Path to shell executable "\bin\zsh" does not exist."
How can I fix this (change the default shell back to ZSH)?
"terminal.integrated.shell.windows": "wsl.exe -d Ubuntu-20.04 -e /bin/zsh"
. – Student