Skip to content

Instantly share code, notes, and snippets.

@oov
Created July 29, 2021 18:38
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 oov/d6a61f869ff2b0865ec2e0be7e597e63 to your computer and use it in GitHub Desktop.
Save oov/d6a61f869ff2b0865ec2e0be7e597e63 to your computer and use it in GitHub Desktop.
Windows Terminal と Visual Studio Code に MSYS2 用の項目を追加する
"MSYS2": {
"path": [
"C:\\msys64\\usr\\bin\\bash.exe"
],
"args": [
"--login"
],
"env": {
"MSYSTEM": "MSYS2",
"CHERE_INVOKING": "1"
}
},
"MSYS2 MINGW32": {
"path": [
"C:\\msys64\\usr\\bin\\bash.exe"
],
"args": [
"--login"
],
"env": {
"MSYSTEM": "MINGW32",
"CHERE_INVOKING": "1"
}
},
"MSYS2 MINGW64": {
"path": [
"C:\\msys64\\usr\\bin\\bash.exe"
],
"args": [
"--login"
],
"env": {
"MSYSTEM": "MINGW64",
"CHERE_INVOKING": "1"
}
},
{
"guid" : "{560f5650-58f5-48f5-9aa3-d0505ca024af}",
"commandline" : "C:\\msys64\\msys2_shell.cmd -msys2 -defterm -no-start",
"icon" : "C:\\msys64\\msys2.ico",
"name" : "MSYS2"
},
{
"guid" : "{e1e14d64-8b96-4c73-9c35-10c8a5d299c8}",
"commandline" : "C:\\msys64\\msys2_shell.cmd -mingw32 -defterm -no-start",
"icon" : "C:\\msys64\\mingw32.ico",
"name" : "MSYS2 MINGW32"
},
{
"guid" : "{4933230a-f78b-4d3c-8478-16b25b27ee2a}",
"commandline" : "C:\\msys64\\msys2_shell.cmd -mingw64 -defterm -no-start",
"icon" : "C:\\msys64\\mingw64.ico",
"name" : "MSYS2 MINGW64"
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment