Skip to content
Musen edited this page Aug 10, 2016 · 12 revisions

Zsh?

Oh-My-Zsh is a framework for Zsh, the Z shell.

  • In order for Oh-My-Zsh to work, Zsh must be installed.
    • Please run zsh --version to confirm.
    • Expected result: zsh 4.3.9 or more recent
  • Additionally, Zsh should be set as your default shell.
    • Please run echo $SHELL from a new terminal to confirm.
    • Expected result: /bin/zsh

Installing Zsh

If necessary, follow these steps to install Zsh:

  1. There are two main ways to install Zsh
  1. Verify installation by running zsh --version. Expected result: zsh 4.3.9 or more recent.
  2. Make it your default shell: chsh -s $(which zsh)
  1. Log out and login back again to use your new default shell.
  2. Test that it worked with echo $SHELL. Expected result: /bin/zsh

Clone this wiki locally