From 41dcdf6bb54009413912ebacf383b8856044a897 Mon Sep 17 00:00:00 2001 From: KenwoodFox Date: Sun, 30 May 2021 18:50:24 -0400 Subject: [PATCH] Update readme again --- README.md | 29 ++++++++++++++++++++--------- 1 file changed, 20 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 27bffe9..0080be8 100644 --- a/README.md +++ b/README.md @@ -9,25 +9,36 @@ # If things offend, backup or delete existing/differeing files. # This could work but idk -```mkdir -p .config-backup && \ +``` +mkdir -p .config-backup && \ config checkout 2>&1 | egrep "\s+\." | awk {'print $1'} | \ -xargs -I{} mv {} .config-backup/{}``` +xargs -I{} mv {} .config-backup/{} +``` # Also use this to keep it all neat! -```config config --local status.showUntrackedFiles no``` +``` +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``` +``` +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``` +``` +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``` +``` +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``` - +``` +git clone --depth 1 https://github.com/junegunn/fzf.git ~/.fzf +~/.fzf/install +```