Move ansible_deploy under .config.

This commit is contained in:
Tom Alexander
2022-10-11 21:45:56 -04:00
parent 68a164467d
commit 6eeac615aa
3 changed files with 7 additions and 7 deletions

View File

@@ -33,10 +33,10 @@ done
PR_NO_COLOR="%{$terminfo[sgr0]%}"
PS1="[$PR_BLUE%n$PR_WHITE@$PR_GREEN%U%m%u$PR_NO_COLOR:$PR_RED%2c$PR_NO_COLOR]%(!.#.$) "
source $HOME/.ansible_deploy/zsh-histdb/sqlite-history.zsh
source $HOME/.config/ansible_deploy/zsh-histdb/sqlite-history.zsh
autoload -Uz add-zsh-hook
source $HOME/.ansible_deploy/zsh-histdb/histdb-interactive.zsh
source $HOME/.config/ansible_deploy/zsh-histdb/histdb-interactive.zsh
bindkey '^r' _histdb-isearch
# TODO: Consider moving to /etc/profile.d
@@ -44,4 +44,4 @@ while read file; do
if [ -e "$file" ]; then
source "$file"
fi
done <<<"$(find $HOME/.ansible_deploy/zshrc -maxdepth 1 -type f -name '*.zsh' -print)"
done <<<"$(find $HOME/.config/ansible_deploy/zshrc -maxdepth 1 -type f -name '*.zsh' -print)"