Skip to content

Instantly share code, notes, and snippets.

@ibrezm1
Created July 23, 2022 18:17
Show Gist options
  • Save ibrezm1/f5509d2dabb5956e262a6af67fe716cc to your computer and use it in GitHub Desktop.
Save ibrezm1/f5509d2dabb5956e262a6af67fe716cc to your computer and use it in GitHub Desktop.
settings.json for VScode
{
"terminal.integrated.profiles.windows": {
"PowerShell": { "source": "PowerShell", "icon": "terminal-powershell" },
"GitBash": {
"path": "${env:windir}\\System32\\cmd.exe",
"args": ["/k","C:\\Tools\\cmder\\vendor\\git-for-windows\\bin\\bash.exe"]
},
"Cmder": {
"path": "${env:windir}\\System32\\cmd.exe",
"args": ["/k", "C:\\Tools\\cmder\\vendor\\bin\\vscode_init.cmd"]
}
},
// Choose Default Terminal
// "terminal.integrated.defaultProfile.windows": "Cmder"
"terminal.integrated.defaultProfile.windows": "Cmder",
// "terminal.integrated.defaultProfile.windows": "CommandPrompt"
// "terminal.integrated.defaultProfile.windows": "PowerShell",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment