Oh My Zsh is an open source, community-driven framework for managing your zsh configuration.
You can easily install it on your mac, follow the installation process below:
Install via curl:
$ sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
or install via wget:
$ sh -c "$(wget https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh -O -)"
That’s all you have to do. you can also visit their official site here.
Change theme
You can choose form hundreds of themes here: https://github.com/ohmyzsh/ohmyzsh/wiki/Themes
To install a theme first choose theme theme name for the previous link and follow the commands:
$ nano ~/.zshrc
and look for
ZSH_THEME="replace with your theme name" set ZSH_THEME="" if you don't want to add any theme
that’s it. now just restart your terminal and boom, your theme is changed.
Add plugin
You can find all compatible plug-ins form here: https://github.com/ohmyzsh/ohmyzsh/tree/master/plugins
To install open .zshrc file and add the plug-in name in plug-in section:
$ nano ~/.zshrc
add the line in the bottom of the page
plugins=(vscode)
or to add multiple:
plugins=(git laravel vscode)