40 lines
1.3 KiB
Bash
40 lines
1.3 KiB
Bash
# Brew, gnuutils
|
|
export HOMEBREW_PREFIX="/opt/homebrew";
|
|
export HOMEBREW_CELLAR="/opt/homebrew/Cellar";
|
|
export HOMEBREW_REPOSITORY="/opt/homebrew";
|
|
export PATH="/opt/homebrew/opt/coreutils/libexec/gnubin:$PATH"
|
|
|
|
export MANPATH="/opt/homebrew/share/man${MANPATH+:$MANPATH}:";
|
|
export INFOPATH="/opt/homebrew/share/info:${INFOPATH:-}";
|
|
export PATH="/opt/homebrew/opt/postgresql@15/bin:$PATH"
|
|
export PATH="/opt/homebrew/opt/openjdk/bin:$PATH"
|
|
export PATH=$PATH:/Users/lizzy/.spicetify
|
|
export PATH="/opt/homebrew/bin:/opt/homebrew/sbin${PATH+:$PATH}";
|
|
export PATH="/Users/lizzy/.bun/bin/:$PATH"
|
|
export PATH="/opt/homebrew/opt/erlang@25/bin:$PATH"
|
|
|
|
# asdf
|
|
. $(brew --prefix asdf)/libexec/asdf.sh
|
|
|
|
export DARK_MODE=True
|
|
|
|
export PATH=$PATH:/Users/lizzy/.spicetify
|
|
|
|
source /Users/lizzy/.wasmer/wasmer.sh
|
|
|
|
eval "$(zoxide init --cmd z zsh)"
|
|
|
|
# Add the following to your shell init to set up gpg-agent automatically for every shell
|
|
# Add the following to your shell init to set up gpg-agent automatically for every shell
|
|
if [ -f ~/.gnupg/.gpg-agent-info ] && [ -n "$(pgrep gpg-agent)" ]; then
|
|
source ~/.gnupg/.gpg-agent-info
|
|
export GPG_AGENT_INFO
|
|
else
|
|
eval $(gpg-agent --daemon --write-env-file ~/.gnupg/.gpg-agent-info)
|
|
fi
|
|
|
|
if [ "${gnupg_SSH_AUTH_SOCK_by:-0}" -ne $$ ]; then
|
|
export SSH_AUTH_SOCK="$(gpgconf --list-dirs agent-ssh-socket)"
|
|
fi
|
|
export GPG_TTY=$(tty)
|