Reputation: 3797
I wanted to get a zsh terminal running in IntelliJ, I set up an external tool which was just zsh and set the working directory to my home directory. When I ran it however there were 2 problems straight away:
Does anyone know if I can get zsh working nicely inside IntelliJ?
Upvotes: 46
Views: 48941
Reputation: 449
For me it still was using Bourne shell even though I selected /bin/zsh in the prefernces window. What helped was to execute
chsh -s /bin/zsh
After restarting intelij terminal, zsh was properly started
Upvotes: 1