1
0
Fork 0
vdotfiles/dot_zshrc

18 lines
295 B
Text

[[ $- != *i* ]] && return
function testbin { whence $@ > /dev/null }
confdir=$HOME/.config/zsh
conflist=(
env.zsh
settings.zsh
prompt.zsh
functions.zsh
local.zsh
)
for conf in $conflist; do
[[ -f $confdir/$conf ]] && . $confdir/$conf
done
unset conf confdir conflist