Files
dotfiles/zsh/zshrc

10 lines
147 B
Bash
Raw Normal View History

2014-11-07 17:37:04 +01:00
[[ -z "$PS1" ]] && return
2016-03-13 15:32:57 +01:00
_zshdir="$HOME/.zsh"
2016-03-07 19:38:16 +01:00
2016-03-13 15:32:57 +01:00
for file in "${_zshdir}"/* ; do
if [[ -e "$file" ]] ; then
source "$file"
2015-09-25 16:25:48 +02:00
fi
done