As a developer, we spend a lot of time working on the terminal and having personalized shell makes the working environment perfect, decreases frustration and also, increases productivity. In this blog, we will discuss how to quickly install plugins and in the theme. Auto-Suggestions Syntax Highlighting oh-my-zsh Install Oh-My-Zsh using Curl: sh -c " " $(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh) NOTE: ZSH and OhMyZsh both are different. Let’s take a look at how to install plugins, and configure Zsh: Install zsh-autosuggestions by running: git https://github.com/zsh-users/zsh-autosuggestions.git /plugins/zsh-autosuggestions clone $ZSH_CUSTOM Install zsh-syntax-highlighting by running: git https://github.com/zsh-users/zsh-syntax-highlighting.git /plugins/zsh-syntax-highlighting clone $ZSH_CUSTOM Now, open file with your favourite editor: .zshrc nano ~/.zshrc And simply add & to section, it will do the magic for you: zsh-autosuggestions zsh-syntax-highlighting plugins() plugins=(git zsh-autosuggestions zsh-syntax-highlighting) Reopen terminal to reconfigure the settings and Voila! 🎉 Previously published here.