zsh: exports: extend PATH variable

This commit is contained in:
Thomas Preisner 2017-10-10 14:42:32 +02:00
parent 5fd4472c50
commit eab35022eb
2 changed files with 5 additions and 0 deletions

4
zsh/exports.zsh Normal file
View file

@ -0,0 +1,4 @@
# extend PATH variable
if [ -d "$HOME/bin" ]; then
export PATH="$HOME/bin:$PATH"
fi