From b22c63a318d94e53b101341ad3e3456a2a6a37fb Mon Sep 17 00:00:00 2001 From: KenwoodFox Date: Sun, 30 May 2021 02:39:15 -0400 Subject: [PATCH] Add required git clone statements for omzsh plugins. --- .DOTFILES_README | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/.DOTFILES_README b/.DOTFILES_README index 7c96e71..f4c6fcc 100644 --- a/.DOTFILES_README +++ b/.DOTFILES_README @@ -15,3 +15,20 @@ xargs -I{} mv {} .config-backup/{} # Also use this to keep it all neat! config config --local status.showUntrackedFiles no + + +# Also, clone all the zsh plugins +# Autocompletions +git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions + +# Syntax highlighting +git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting + +# zsh-z +git clone https://github.com/agkozak/zsh-z $ZSH_CUSTOM/plugins/zsh-z + +# fzf +git clone --depth 1 https://github.com/junegunn/fzf.git ~/.fzf +~/.fzf/install + +