Local path first

This commit is contained in:
theanonymousexyz 2022-05-07 16:52:33 +02:00
parent 6d26a941bd
commit 2a7ccd51d8
No known key found for this signature in database
GPG Key ID: 35EE09F5481049BB
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
# PATH
export PATH="$PATH:$HOME/.local/bin"
(( ${+commands[go]} )) && export PATH="$PATH:$(go env GOPATH)/bin"
export PATH="$HOME/.local/bin:$PATH"
(( ${+commands[go]} )) && export PATH="$(go env GOPATH)/bin:$PATH"
# Essentials
[[ $(uname -o) == "GNU/Linux" ]] \