dotfiles/.zsh.d/path.zsh

12 lines
194 B
Bash
Raw Normal View History

2024-02-10 12:33:24 +00:00
# === 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