1
0
Fork 0
vdotfiles/dot_zshrc

16 lines
239 B
Text
Raw Normal View History

[[ $- != *i* ]] && return
confdir=$HOME/.config/zsh
conflist=(
2025-03-04 14:00:46 +02:00
functions.zsh
settings.zsh
2023-08-03 19:51:22 +03:00
prompt.zsh
local.zsh
)
for conf in $conflist; do
[[ -f $confdir/$conf ]] && . $confdir/$conf
done
unset conf confdir conflist