diff --git a/README.md b/README.md index 213193c35..b21068118 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,19 @@ sh -c "$(curl -fsSL https://raw.githubusercontent.com/snakewarhead/oh-my-zsh/master/tools/install.sh)" ``` +## Issues + +[Can't set zsh as default shell](https://github.com/robbyrussell/oh-my-zsh/issues/5401#issuecomment-250828518) + +add code to `.bashrc` file to automatically start zsh: + +```bash +if [[ $- == *i* ]]; then + export SHELL=zsh + zsh -l +fi +``` + ---