.s/scripts/machine-specific-zsh/armin.zsh

40 lines
1.3 KiB
Bash
Raw Normal View History

# Brew, gnuutils
export HOMEBREW_PREFIX="/opt/homebrew";
export HOMEBREW_CELLAR="/opt/homebrew/Cellar";
export HOMEBREW_REPOSITORY="/opt/homebrew";
2023-05-27 20:29:07 -04:00
export PATH="/opt/homebrew/opt/coreutils/libexec/gnubin:$PATH"
export MANPATH="/opt/homebrew/share/man${MANPATH+:$MANPATH}:";
export INFOPATH="/opt/homebrew/share/info:${INFOPATH:-}";
2023-04-23 00:49:51 -04:00
export PATH="/opt/homebrew/opt/postgresql@15/bin:$PATH"
2023-04-23 01:50:48 -04:00
export PATH="/opt/homebrew/opt/openjdk/bin:$PATH"
2023-05-27 20:29:07 -04:00
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
2023-05-27 20:29:07 -04:00
2024-03-09 16:08:30 -05:00
export DARK_MODE=True
2024-02-04 16:10:00 -05:00
2023-05-27 20:29:07 -04:00
export PATH=$PATH:/Users/lizzy/.spicetify
2024-03-01 13:54:18 -05:00
source /Users/lizzy/.wasmer/wasmer.sh
2024-03-09 16:08:30 -05:00
eval "$(zoxide init --cmd z zsh)"
2024-04-10 12:03:45 -04:00
2024-05-04 17:32:47 -04:00
# 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
2024-04-10 12:03:45 -04:00
if [ "${gnupg_SSH_AUTH_SOCK_by:-0}" -ne $$ ]; then
export SSH_AUTH_SOCK="$(gpgconf --list-dirs agent-ssh-socket)"
fi
export GPG_TTY=$(tty)