Mac下安装 zsh-autosuggestion 插件

zsh-autosuggestion是oh-my-szh的一个插件,作用基本上是根据历史输入指令的记录即时的提示,能够很大的提高效率。

配合Mac端安装shell神器 oh-my-zsh食用效果更佳。

1.安装

git clone git://github.com/zsh-users/zsh-autosuggestions $ZSH_CUSTOM/plugins/zsh-autosuggestions

2.配置

vim ~/.zshrc

#找到plugins=(git)这一行,然后再添加zsh-autosuggestions
plugins=(
  git zsh-autosuggestions
)

source ~/.zshrc更新一下你的zsh配置

接下来就可以看看zsh-autosuggestion插件的使用效果了

Comments