dotfiles/.zsh.d/path.zsh

12 lines
194 B
Bash

# === Path ===
case ${OSTYPE} in
darwin*)
# For Mac only
export PATH=/Users/kazu634/bin:$PATH
;;
linux*)
# For Linux only
export PATH=/home/kazu634/bin:$PATH
;;
esac