Skip to content

Instantly share code, notes, and snippets.

@edwardbeckett
Forked from hrko/settings.json
Created May 18, 2024 12:13
Show Gist options
  • Save edwardbeckett/8e79dc884c60be039fb2d4e70ce64c3f to your computer and use it in GitHub Desktop.
Save edwardbeckett/8e79dc884c60be039fb2d4e70ce64c3f to your computer and use it in GitHub Desktop.
Msys2 terminal profiles for Visual Studio Code
"terminal.integrated.profiles.windows": {
"MINGW64 / MSYS2": {
"path": "C:/msys64/msys2_shell.cmd",
"args": [
"-defterm",
"-here",
"-no-start",
"-mingw64"
],
},
"MINGW32 / MSYS2": {
"path": "C:/msys64/msys2_shell.cmd",
"args": [
"-defterm",
"-here",
"-no-start",
"-mingw32"
]
},
"MSYS / MSYS2": {
"path": "C:/msys64/msys2_shell.cmd",
"args": [
"-defterm",
"-here",
"-no-start",
"-msys"
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment