2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

IntelliJのターミナルでmsys2を使う

Posted at

普通にmsys2のbashを設定しただけではいろいろ不便だったので調べてみました。

IntelliJのSettingを開き、Tools > Terminalと選択してShell pathを次のようにします。

"cmd.exe" /c set "CHERE_INVOKING=1" & set "MSYS2_PATH_TYPE=inherit" & "C:\msys64\usr\bin\bash.exe" --login -i

環境変数を設定しているのはmsys2の設定で、

  • CHERE_INVOKING=1

カレントディレクトリを作業ディレクトリとする。
これを設定しておけばshellのカレントディレクトリがプロジェクトのルートから開始できます。

  • MSYS2_PATH_TYPE=inherit

パスの設定をwindowsから引き継ぎます。

2
1
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
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?