Install Oh My Zsh

·

1 min read

Install Zsh and OhMyZsh

sudo apt-get update
sudo apt-get install zsh
sudo curl -L http://install.ohmyz.sh | sh

Install plugin zsh-autosuggestions

git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions

Edit file .zshrc

plugins=(zsh-autosuggestions)

append these lines at the end of the file

alias ll="ls -alF"
export ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE="fg=220"

Install font Powerline

git clone https://github.com/powerline/fonts.git
cd fonts
./install.sh
cd .. && rm -rf fonts

sample Preference of Terminal

image.png