summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rwxr-xr-xtag-zsh/config/zsh/zshenv4
-rwxr-xr-xtag-zsh/config/zsh/zshrc2
2 files changed, 3 insertions, 3 deletions
diff --git a/tag-zsh/config/zsh/zshenv b/tag-zsh/config/zsh/zshenv
index 11932e6..c4b3b9c 100755
--- a/tag-zsh/config/zsh/zshenv
+++ b/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 ]]
diff --git a/tag-zsh/config/zsh/zshrc b/tag-zsh/config/zsh/zshrc
index 365214c..d183baa 100755
--- a/tag-zsh/config/zsh/zshrc
+++ b/tag-zsh/config/zsh/zshrc
@@ -358,5 +358,5 @@ autoload -U fasd
 source ~/.zsh/cache/fasd-init-zsh
 
 if [[ $OSTYPE == freebsd* ]]; then
-	source ~/projects/dotfiles/zsh/freebsd.zsh
+	source $ZDOTDIR/freebsd.zsh
 fi