What is iTerm2
iTerm2 is a replacement for Terminal that can do amazing things.
To install iTerm2, it’s very easy
1
2
# Terminal: Development
brew install iterm2
If you did not install Homebrew yet, please follow my post here to install it.
After iTerm2 installed. Now let’s go with Oh My Zsh
1
2
# Terminal: Development
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
Install autosuggestions and syntax-highlighting
1
2
3
4
# Terminal: Development
brew install zsh-autosuggestions
brew install zsh-syntax-highlighting
You can change the theme of Oh My Zsh
1
2
3
4
#Terminal: Development
vim ~/.zshrc
ZSH_THEME = "theunraveler"
# theunraveler is a nice time. Sometimes I'm switching between this theme and default theme.
If you guys had any cool theme or plugin, please let me know by leave it in the comment bellow. Thanks all!!!