mirror of https://github.com/akelge/zsh
Typos
This commit is contained in:
parent
1fe3029353
commit
f154388670
9
zshrc
9
zshrc
|
@ -29,12 +29,11 @@ local LIBRARY=${BASE}/zsh.d
|
||||||
# local KERNEL=`uname -s`
|
# local KERNEL=`uname -s`
|
||||||
local KERNLIB=${LIBRARY}/$(uname -s)
|
local KERNLIB=${LIBRARY}/$(uname -s)
|
||||||
|
|
||||||
# loadRC ${LIBRARY} ${KERNLIB}
|
for lib in $LIBRARY $KERNLIB; do
|
||||||
for subdir in $LIBRARY $KERNLIB; do
|
[ -d $lib/zshfunctions ] && fpath=($lib/zshfunctions $fpath)
|
||||||
[ -d $subdir/zshfunctions ] && fsubdir=($subdir/zshfunctions $fsubdir)
|
[ -d $lib/completions ] && fpath=($lib/completions $fpath)
|
||||||
[ -d $subdir/completions ] && fsubdir=($subdir/completions $fsubdir)
|
|
||||||
|
|
||||||
for zshFile in $subdir/[0-9]*.zsh; do
|
for zshFile in $lib/[0-9]*.zsh; do
|
||||||
# echo $zshFile
|
# echo $zshFile
|
||||||
source $zshFile
|
source $zshFile
|
||||||
done
|
done
|
||||||
|
|
Loading…
Reference in New Issue