From 4c2c4418e139758a1331b6b733b243c918f24985 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Tue, 7 Apr 2020 00:53:25 +0100 Subject: [PATCH] Move zplug cache and repos directories to ~/.local/zsh/zplug Instead of keeping them within the dotfiles repo itself. --- .gitignore | 2 -- zsh/zplug/cache/.gitkeep | 0 zsh/zplug/repos/.gitkeep | 0 zshrc | 4 ++-- 4 files changed, 2 insertions(+), 4 deletions(-) delete mode 100644 zsh/zplug/cache/.gitkeep delete mode 100644 zsh/zplug/repos/.gitkeep diff --git a/.gitignore b/.gitignore index dffd67c..af975de 100644 --- a/.gitignore +++ b/.gitignore @@ -8,5 +8,3 @@ bin/boot2docker.iso bundle/cache/* private/* tmux/plugins/* -zsh/zplug/cache/* -zsh/zplug/repos/* diff --git a/zsh/zplug/cache/.gitkeep b/zsh/zplug/cache/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/zsh/zplug/repos/.gitkeep b/zsh/zplug/repos/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/zshrc b/zshrc index 7bab70f..474b8a2 100644 --- a/zshrc +++ b/zshrc @@ -15,8 +15,8 @@ fi # ============================================================================== ZPLUG_HOME="$DOTZSH/zplug/zplug" -ZPLUG_CACHE_DIR="$DOTZSH/zplug/cache" -ZPLUG_REPOS="$DOTZSH/zplug/repos" +ZPLUG_CACHE_DIR="$HOME/.local/zsh/zplug/cache" +ZPLUG_REPOS="$HOME/.local/zsh/zplug/repos" source "$ZPLUG_HOME/init.zsh" alias zp="zplug"