Skip to content

Instantly share code, notes, and snippets.

@filipelenfers
Created January 5, 2018 13:02
Show Gist options
  • Save filipelenfers/75af74eceb237ba1a91a1d5b3655d589 to your computer and use it in GitHub Desktop.
Save filipelenfers/75af74eceb237ba1a91a1d5b3655d589 to your computer and use it in GitHub Desktop.
Visual Studo Code / vscode - use bash and run zsh
//I like to use oh-my-zsh so I added it as default terminal on vs code
//First define your default distro for wsl
//run this on cmd.exe
//wslconfig /l
//wslconfig /s Ubuntu
//On user Settings add:
{
"terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\bash.exe",
"terminal.integrated.shellArgs.windows": [
"-c",
"zsh"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment