Skip to content

Instantly share code, notes, and snippets.

@aa6my
Forked from hrko/settings.json
Created November 30, 2022 06:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aa6my/d7be897883180fb2aefccb7f623c87e0 to your computer and use it in GitHub Desktop.
Save aa6my/d7be897883180fb2aefccb7f623c87e0 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