Skip to content

Instantly share code, notes, and snippets.

@Kreijstal
Last active May 11, 2025 16:28
Show Gist options
  • Save Kreijstal/284b19e3bd793f07bfe40caca3eb886e to your computer and use it in GitHub Desktop.
Save Kreijstal/284b19e3bd793f07bfe40caca3eb886e to your computer and use it in GitHub Desktop.
msys2 on vscode
{
"terminal.integrated.defaultProfile.linux": "",
"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"
},
"Git Bash": {
"source": "Git Bash"
},
"MSYS2": {
"path": "C:\\rtools44\\msys2_shell.cmd",
"args": ["-defterm", "-ucrt64", "-no-start", "-here"
],
"env": {
"MSYSTEM": "UCRT64",
"CHERE_INVOKING": "1"
}
}
},
"terminal.integrated.defaultProfile.windows": "MSYS2",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment