zsh/zshenv

8 lines
109 B
Plaintext
Raw Normal View History

2020-02-24 09:19:10 +00:00
exists() { command -v "$@" >/dev/null }
2020-04-29 08:35:23 +00:00
function(){
local i
for i in $ZDOTDIR/env/*.zsh; do
. $i
done
}