Update paths to use $USER

This commit is contained in:
Victor Timofei 2023-06-17 16:27:08 +03:00
parent 00736768d4
commit 2313226c67
No known key found for this signature in database
GPG Key ID: DD624AB6CFB54FC8
1 changed files with 4 additions and 4 deletions

View File

@ -1,11 +1,11 @@
# my executables
PATH=/home/vtimofei/scripts:$PATH
PATH=/home/vtimofei/bin:$PATH
PATH=/home/vtimofei/.local/bin:$PATH
PATH="$HOME/scripts:$PATH"
PATH="$HOME/bin:$PATH"
PATH="$HOME/.local/bin:$PATH"
# go env
PATH=$PATH:/usr/local/go/bin
GOPATH=/home/vtimofei/go
GOPATH="$HOME/go"
GOBIN=${GOPATH}/bin
PATH=$GOBIN:$PATH