17 lines
292 B
Bash
17 lines
292 B
Bash
|
# If not running interactively, don't do anything
|
||
|
[[ $- != *i* ]] && return
|
||
|
|
||
|
confdir=$HOME/.config/zsh
|
||
|
conflist=(
|
||
|
settings.zsh
|
||
|
powerline.zsh
|
||
|
functions.zsh
|
||
|
local.zsh
|
||
|
)
|
||
|
|
||
|
for conf in $conflist; do
|
||
|
[[ -f $confdir/$conf ]] && . $confdir/$conf
|
||
|
done
|
||
|
|
||
|
unset conf confdir conflist
|