Add gobin to path
This commit is contained in:
parent
7c3e013253
commit
833fc3e5c1
10
.bashrc
10
.bashrc
@ -61,6 +61,14 @@ export KUBECONFIG=~/.kube/config
|
|||||||
# Gpg keep key session to this TTY
|
# Gpg keep key session to this TTY
|
||||||
export GPG_TTY=$(tty)
|
export GPG_TTY=$(tty)
|
||||||
|
|
||||||
|
# Set the go bin for `go install` commands
|
||||||
|
export GOBIN="$HOME/.local/gobin"
|
||||||
|
# Make the go bin
|
||||||
|
mkdir -p $GOBIN
|
||||||
|
# And add the gobin to the executable path
|
||||||
|
export PATH="$GOBIN:$PATH"
|
||||||
|
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
# Convience Aliases ###########################################################
|
# Convience Aliases ###########################################################
|
||||||
###############################################################################
|
###############################################################################
|
||||||
@ -151,3 +159,5 @@ export NVM_DIR="$HOME/.nvm"
|
|||||||
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
|
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
|
||||||
[[ -f ~/.bash-preexec.sh ]] && source ~/.bash-preexec.sh
|
[[ -f ~/.bash-preexec.sh ]] && source ~/.bash-preexec.sh
|
||||||
eval "$(atuin init bash)"
|
eval "$(atuin init bash)"
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user