diff options
author | Camil Staps | 2016-02-09 14:16:10 +0100 |
---|---|---|
committer | Camil Staps | 2016-11-30 19:11:06 +0100 |
commit | 350a07b0a8525645671a029621cc873b2a8d1957 (patch) | |
tree | f332a624e3182aea22e6a42c27346b3eba4203c5 /zsh/fpath.zsh | |
parent | zsh (diff) |
Fixed oh-my-zsh
Diffstat (limited to 'zsh/fpath.zsh')
-rw-r--r-- | zsh/fpath.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zsh/fpath.zsh b/zsh/fpath.zsh index eaff4f4..b450c26 100644 --- a/zsh/fpath.zsh +++ b/zsh/fpath.zsh @@ -1,2 +1,2 @@ #add each topic folder to fpath so that they can add functions and completion scripts -for topic_folder ($ZSH/*) if [ -d $topic_folder ]; then fpath=($topic_folder $fpath); fi; +for topic_folder ($DOTFILES/zsh/*) if [ -d $topic_folder ]; then fpath=($topic_folder $fpath); fi; |