Instructions for Setting Up oh-my-zsh

This file documents setup process for oh-my-zsh.

Change shell to zsh: chsh -s $(which zsh).

Oh-My-Zsh

OMZ Installation

sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"

Syntax highlight

git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh}customzsh-syntax-highlighting
echo "source ${(q-)PWD}/customzsh-syntax-highlighting/zsh-syntax-highlighting.zsh" >> ${ZDOTDIR:-$HOME}/.zshrc
source ${ZSH_CUSTOM:-~/.oh-my-zsh}customzsh-syntax-highlighting/zsh-syntax-highlighting.zsh

Autosuggestions

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

Inside .zshrc:

plugins=(
    # other plugins...
    zsh-autosuggestions
)