aboutsummaryrefslogtreecommitdiff
path: root/zsh/fpath.zsh
blob: eaff4f41b0b317e75121da74910c3bcd1410be14 (plain) (blame)
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;