From 221715e9fec2694fc06373b21a624092e387ae98 Mon Sep 17 00:00:00 2001 From: KenwoodFox Date: Wed, 2 Jun 2021 22:16:25 -0400 Subject: [PATCH] Delete old readme --- .DOTFILES_README | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 .DOTFILES_README diff --git a/.DOTFILES_README b/.DOTFILES_README deleted file mode 100644 index f4c6fcc..0000000 --- a/.DOTFILES_README +++ /dev/null @@ -1,34 +0,0 @@ -# Clone repo -git clone --bare https://kitsunehosting.net/gitea/Kenwood/dotfiles.git $HOME/.dotfiles - -# Make a temp alias (will be perminant via .zshrc) -alias config='/usr/bin/git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME' - -# Pull stuff down! -config checkout - -# If things offend, backup or delete existing/differeing files. -# This could work but idk -mkdir -p .config-backup && \ -config checkout 2>&1 | egrep "\s+\." | awk {'print $1'} | \ -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 - -