4 lines
82 B
Bash
4 lines
82 B
Bash
# vim:set ft=zsh:
|
|
if [[ -d "$HOME/bin" ]]; then
|
|
export PATH=$HOME/bin:${PATH}
|
|
fi
|