How can I use oh-my-zsh with PHPStorm?

I just got oh-my-zsh (a very good command line utility) and would like to use this in the PHPStorm terminal. How can i do this?

+4
source share
2 answers

Since oh-my-zsh is a more advanced zsh configuration, it should be simple enough to tell PHPStorm to use zshas a shell. This can be done in the "Settings" dialog box ("Menu File-> Settings") under "Project Settings->" Terminal. Just change the Shell Path to the path zsh(you can find out using type zshthe terminal).

To influence each (new) project, you may need to repeat this in the menu File> Default Settings

+12
source

For once and for all settings:

Set it in Settings-> Tools-> Terminal and Shell Path = /bin/zsh

restart PhpStorm and thereby.

+7
source

Source: https://habr.com/ru/post/1533758/


All Articles