Skip to content

Instantly share code, notes, and snippets.

@flamewing
Last active August 13, 2019 08:29
Show Gist options
  • Save flamewing/c444771de825cb447d74d718f09c2472 to your computer and use it in GitHub Desktop.
Save flamewing/c444771de825cb447d74d718f09c2472 to your computer and use it in GitHub Desktop.

To use msys2 bash on VSCode, add the following to settings:

    "terminal.integrated.shell.windows": "C:\\msys64\\usr\\bin\\bash.exe",
    "terminal.integrated.shellArgs.windows": [
        "--login",
    ],
    "terminal.integrated.env.windows": {
        "CHERE_INVOKING": "1",
        "MSYSTEM": "MINGW64",
    },

This comes from Stack Overflow.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment