dotfiles/.config/zsh/config.d/99-prepend-home-bin-path

4 lines
82 B
Bash

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