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
|
# FUNCTIONS
|
||||||
###
|
###
|
||||||
|
|
||||||
# function path
|
# Function path
|
||||||
fpath=($HOME/.zsh/func $fpath)
|
fpath=($HOME/.zsh/makers $HOME/.zsh/func $fpath)
|
||||||
|
|
||||||
# Generate a password
|
# Generate a password
|
||||||
print_info_sub_noisy 3 "Loading pw module"
|
print_info_sub_noisy 3 "Loading pw module"
|
||||||
autoload pw
|
autoload pw
|
||||||
|
|
||||||
# Maker module -- various functions for makin' stuff
|
# Maker module -- various functions for makin' stuff
|
||||||
print_info_sub_noisy 3 "Loading mkrs module"
|
print_info_sub_noisy 3 "Loading makers module"
|
||||||
autoload mkrs
|
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 ../
|
# Go up $1 directories, where $1 is an integer (saves me from having to type ../
|
||||||
# ad nauseum)
|
# ad nauseum)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue