概要
macOS で zsh-autosuggestions プラグインをインストールする方法をまとめる。
手順
1. Oh-My-Zsh のプラグインフォルダに移動する
cd ~/.oh-my-zsh/custom/plugins
2. プラグインリポジトリをクローンする
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
3. ~/.zshrc の plugins に zsh-autosuggestions を追加する
plugins=(
# other plugins...
zsh-autosuggestions
)
コメントする