25 lines
563 B
Bash
25 lines
563 B
Bash
typeset -U path
|
|
path=(~/bin ~/.local/bin ~/.gem/ruby/2.6.0/bin ~/go/bin /opt/local/bin ~/.cargo/bin /usr/local/opt/make/libexec/gnubin $path)
|
|
|
|
export LEDGER_FILE="$HOME/journal.ledger"
|
|
|
|
EDITOR="$(which emacsclient)"
|
|
export EDITOR
|
|
|
|
export PATH="$HOME/.cargo/bin:$PATH"
|
|
|
|
export NVM_DIR="$HOME/.nvm"
|
|
|
|
export WORKON_HOME="$HOME/.local/share/virtualenvs"
|
|
|
|
GPG_TTY=$(tty)
|
|
export GPG_TTY
|
|
|
|
if [ -d /Applications/Postgres.app ];
|
|
then
|
|
path=(/Applications/Postgres.app/Contents/Versions/latest/bin $path)
|
|
fi
|
|
|
|
export PIPENV_MAX_DEPTH=20
|
|
export PIPENV_VENV_IN_PROJECT=yes
|