zsh: move path def

This commit is contained in:
Jason Swank 2024-12-31 14:08:04 +00:00
parent 2d9108c0c5
commit 54a540e31f
2 changed files with 9 additions and 4 deletions

View File

@ -13,9 +13,9 @@ export FZF_DEFAULT_OPTS="--multi --height=40% --layout=reverse"
export GOPATH=~/go
# doesn't work on arch for tmux
path+=(~/bin)
path+=(~/.local/bin)
path+=($GOPATH/bin)
export PATH
#path+=(~/bin)
#path+=(~/.local/bin)
#path+=($GOPATH/bin)
#export PATH
export TMPDIR=/var/tmp

View File

@ -4,6 +4,11 @@ alias vim='nvim'
alias vi='nvim'
alias w3='w3m -T text/html'
path+=(~/bin)
path+=(~/.local/bin)
path+=($GOPATH/bin)
export PATH
# allow for # to be interpreted as a comment on the command line
setopt interactivecomments