Skip to main content

Setup Oh My ZSH

To install Oh My Zsh, a popular framework for managing your Zsh configuration, follow these steps:

  1. Open your terminal and run one of the following commands:
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"

OR

sh -c "$(wget https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh -O -)"

These commands will download and run the Oh My Zsh installation script.

  1. Once the installation is complete, you can set Zsh as your default shell by running the following command:
chsh -s $(which zsh)

This command will change your default shell to Zsh.

  1. Lastly, you can configure your Zsh settings by creating a file called zsh-custom.sh. This file will contain any custom configurations you want to add to your Zsh setup.

That's it! You have successfully set up Oh My Zsh on your system. Enjoy using the powerful Zsh shell with all the additional features provided by Oh My Zsh!