aboutsummaryrefslogtreecommitdiffstats
path: root/.zsh.before/path.zsh
blob: 146943dfdae44f860ab9a02442309f19f193cbe4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# prepend pyenv based python, in case there's any
if [ -d "$HOME/.local/bin" ] && [ -d "$HOME/.pyenv/shims" ]; then
  PATH="$HOME/.local/bin:$HOME/.pyenv/shims:$PATH"
fi

## RASPBERRY PI
if [[ "$HOST" == *pitheunlord* ]]; then
  PATH=$PATH:"/opt/vc/bin:/opt/vc/sbin"
fi

# Prepend $HOME/bin and append /usr/sbin to PATH (for Debilian)
PATH="$HOME/bin:$PATH:/usr/sbin"