From 031809b3ff819c9c61329b7540e6145d420efdde Mon Sep 17 00:00:00 2001 From: JGill Date: Sun, 26 Sep 2021 15:06:14 +0530 Subject: [PATCH] Change ZDORDIR to ZSH_CONIGS_DIR, fixes .zcomdump files issue --- .zshrc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.zshrc b/.zshrc index 9a613cc..cbcf014 100644 --- a/.zshrc +++ b/.zshrc @@ -12,10 +12,10 @@ source "$HOME/.config/ezsh/ezshrc.zsh" # Any zshrc configurations under the folder ~/.config/ezsh/zshrc/ will override the default ezsh configs. # Place all of your personal configurations over there -ZDOTDIR="$HOME/.config/ezsh/zshrc" +ZSH_CONFIGS_DIR="$HOME/.config/ezsh/zshrc" -if [ "$(ls -A $ZDOTDIR)" ]; then - for file in "$ZDOTDIR"/*; do +if [ "$(ls -A $ZSH_CONFIGS_DIR)" ]; then + for file in "$ZSH_CONFIGS_DIR"/*; do source "$file" done fi