[ZSH] Add Go Stuff
This commit is contained in:
parent
0b530f0b8c
commit
e1ff828263
1 changed files with 15 additions and 0 deletions
15
shells/zshrc
15
shells/zshrc
|
@ -169,3 +169,18 @@ then
|
|||
export DISPLAY=$(ip route | awk '{print $3; exit}'):0
|
||||
export LIBGL_ALWAYS_INDIRECT=1
|
||||
fi
|
||||
|
||||
################
|
||||
### GO STUFF ###
|
||||
################
|
||||
|
||||
if [[ -d "/usr/local/go/bin" ]]
|
||||
then
|
||||
export PATH="/usr/local/go/bin:$PATH"
|
||||
fi
|
||||
|
||||
if [[ -d "/home/$USER/projects/go/bin" ]]
|
||||
then
|
||||
export PATH="/home/$USER/projects/go/bin:$PATH"
|
||||
fi
|
||||
|
||||
|
|
Loading…
Reference in a new issue