Fix makers function path

This commit is contained in:
Eryn Wells 2012-11-02 14:38:34 -07:00
parent 23996c860b
commit 59cabba725

11
zshrc
View file

@ -181,15 +181,18 @@ zstyle ':completion:*' expand 'yes'
# FUNCTIONS
###
# function path
fpath=($HOME/.zsh/func $fpath)
# Function path
fpath=($HOME/.zsh/makers $HOME/.zsh/func $fpath)
# Generate a password
print_info_sub_noisy 3 "Loading pw module"
autoload pw
# Maker module -- various functions for makin' stuff
print_info_sub_noisy 3 "Loading mkrs module"
autoload mkrs
print_info_sub_noisy 3 "Loading makers module"
for func in `ls $HOME/.zsh/makers`; do
autoload $func
done
# Go up $1 directories, where $1 is an integer (saves me from having to type ../
# ad nauseum)