Mac 下 ohmyzsh 以及相关插件的安装

一般我们需要三个插件 zsh-autosuggestions autojump zsh-syntax-highlighting
安装方法如下
安装 zsh-autosuggestions 自动补全
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
安装 zsh-syntax-highlighting 高亮展示
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ~/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting
安装 autojump自动跳转 用法:j+之前使用过的目录
brew install autojump
安装之后 需要到vim ~/.zshrc

  plugins=(
    git
    zsh-autosuggestions
   autojump
   zsh-syntax-highlighting
  )```

你可能感兴趣的:(Mac 下 ohmyzsh 以及相关插件的安装)