[zsh] add missing `export`s to PATH=…

legacy
Simon Bruder 2019-02-11 14:07:15 +00:00
parent 306b323c51
commit 4f88b04ea4
No known key found for this signature in database
GPG Key ID: 6F03E0000CC5B62F
1 changed files with 4 additions and 4 deletions

View File

@ -2,24 +2,24 @@
## Go
export GOPATH="$HOME/go"
PATH="$PATH:$GOPATH/bin"
export PATH="$PATH:$GOPATH/bin"
## Node
export NVM_DIR=$(realpath "$HOME/.nvm")
source "$NVM_DIR/nvm.sh"
## Python (pip)
PATH="/home/simon/.local/bin:$PATH"
export PATH="/home/simon/.local/bin:$PATH"
## Lua
PATH="$PATH:$HOME/.luarocks/bin/"
export PATH="$PATH:$HOME/.luarocks/bin/"
# Misc
## Local binaries
PATH="$HOME/bin:$PATH"
export PATH="$HOME/bin:$PATH"
# Ergonomic