Skip to content

Instantly share code, notes, and snippets.

@ivo-ivanov
Created May 24, 2021 16:34
Show Gist options
  • Save ivo-ivanov/0cac1b78f35b5aed1e79177b1d868f74 to your computer and use it in GitHub Desktop.
Save ivo-ivanov/0cac1b78f35b5aed1e79177b1d868f74 to your computer and use it in GitHub Desktop.
Set Git Bash as default terminal in VScode
"terminal.integrated.profiles.windows": {
"PowerShell": {
"source": "PowerShell",
"icon": "terminal-powershell"
},
"Command Prompt": {
"path": [
"${env:windir}\\Sysnative\\cmd.exe",
"${env:windir}\\System32\\cmd.exe"
],
"args": [],
"icon": "terminal-cmd"
},
"GitBash": {
"source": "Git Bash",
"path": [
"C:\\Program Files\\Git\\bin\\bash.exe"
],
"icon": "terminal-bash"
}
},
"terminal.integrated.defaultProfile.windows": "GitBash",
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment