LoginSignup
0
0

More than 1 year has passed since last update.

VSCodeのシェルをMSYS2のzshにする

Posted at

VSCodeのバージョンは1.58.2で確認。

settings.json
    "terminal.integrated.profiles.windows": {
        "zsh": {
            "path": "C:\\msys64\\usr\\bin\\zsh.exe",
            "args": [
                "-l"
            ],
            "env": {
                "MSYSTEM": "MINGW64",
                "CHERE_INVOKING": "1",
                "MSYS2_PATH_TYPE": "inherit"
            }
        }
    },
    "terminal.integrated.defaultProfile.windows": "zsh"
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0