Overview
This post covers how to install the zsh-autosuggestions plugin on macOS.
Steps
1. Navigate to the Oh-My-Zsh Plugins Folder
cd ~/.oh-my-zsh/custom/plugins
2. Clone the Plugin Repository
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
3. Add zsh-autosuggestions to the plugins in ~/.zshrc
plugins=(
# other plugins...
zsh-autosuggestions
)
Leave a comment