Skip to content

Instantly share code, notes, and snippets.

@nhahv
Created April 6, 2022 07:08
Show Gist options
  • Save nhahv/8fa180e4009dcf0f22eeef2482507ab4 to your computer and use it in GitHub Desktop.
Save nhahv/8fa180e4009dcf0f22eeef2482507ab4 to your computer and use it in GitHub Desktop.
VSCode - CygWin - Zsh (Enter current folder)
{
//Enter current folder to ZSH
"terminal.integrated.env.windows": {
"CHERE_INVOKING": "1"
},
"terminal.integrated.profiles.windows": {
"Cygwin": {
"env": {
"CHERE_INVOKING": "1" //(Not working)
},
"args": [
"-l"
],
"color": "terminal.ansiGreen",
"icon": "terminal-bash",
"path": "C:\\cygwin64\\bin\\zsh.exe"
},
"Cygwin BASH": {
"path": "C:\\cygwin64\\bin\\bash.exe",
"args": [
"-l"
]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment