Настройка Oh-my-zsh и плагинов zsh-autosuggestions, zsh-syntax-highlighting, fzf

1. Установите Oh-my-zsh с помошью curl:

sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"

2. Скачайте плагины :

  • Загрузите zsh-autosuggestions из:
git clone https://github.com/zsh-users/zsh-autosuggestions.git $ZSH_CUSTOM/plugins/zsh-autosuggestions
  • Загрyзите zsh-syntax-highlighting из:
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git $ZSH_CUSTOM/plugins/zsh-syntax-highlighting
  • Установите fzf
pkg install fzf

3. Отредактируйте ваш ~/.zshrc:

  • nvim ~/.zshrc найти plugins=(git)

  • Добавить zsh-autosuggestions & zsh-syntax-highlighting & fzf в секцию plugins() примерно вот так: =>

 plugins=(
git zsh-autosuggestions zsh-syntax-highlighting fzf
)
  • Перезагрузите терминал

Ссылки: