zsh: Use $ZDOTDIR instead of hardcoded path
1 file changed, 2 insertions(+), 2 deletions(-)
changed files
M tag-zsh/config/zsh/zshenv → tag-zsh/config/zsh/zshenv
@@ -16,10 +16,10 @@ fi export PATH -myfuncs=( ~/projects/dotfiles/zsh/functions/*(/) ) +myfuncs=( $ZDOTDIR/functions/*(/) ) fpath=( $myfuncs - ~/projects/dotfiles/zsh/completion/ + $ZDOTDIR/completion/ $fpath ) if [[ -d /usr/local/share/zsh-completions ]]