zsh: add ~/bin to PATH if available

This commit is contained in:
Mark Riedesel 2024-06-18 15:48:01 -05:00
parent 874cd444ba
commit 29f6d0a2b9
2 changed files with 5 additions and 3 deletions

View file

@ -0,0 +1,4 @@
# vim:set ft=zsh:
if [[ -d "$HOME/bin" ]]; then
export PATH=$HOME/bin:${PATH}
fi