Fix makers function path
This commit is contained in:
parent
23996c860b
commit
59cabba725
1 changed files with 7 additions and 4 deletions
11
zshrc
11
zshrc
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue