Skip to content

Instantly share code, notes, and snippets.

@hrko
Created August 31, 2021 14:42
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save hrko/0af939c4459e8919a3784af38c5ed79c to your computer and use it in GitHub Desktop.
Save hrko/0af939c4459e8919a3784af38c5ed79c 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