1
0
Fork 0
vdotfiles/cli/.zshrc

18 lines
301 B
Bash
Raw Normal View History

# If not running interactively, don't do anything
[[ $- != *i* ]] && return
confdir=$HOME/.config/zsh
conflist=(
2023-02-10 19:04:47 +02:00
env.zsh
settings.zsh
2023-08-03 19:51:22 +03:00
prompt.zsh
functions.zsh
local.zsh
)
for conf in $conflist; do
[[ -f $confdir/$conf ]] && . $confdir/$conf
done
unset conf confdir conflist