You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dotfiles/zprofile

13 lines
218 B
Bash

# go path
export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin
# add local paths
if [ -d $HOME/bin ] ; then
export PATH=$PATH:$HOME/bin
fi
if [ -d $HOME/.local/bin ] ; then
export PATH=$PATH:$HOME/.local/bin
fi