X-Git-Url: https://git.sev.monster/~sev/dotfiles.git/blobdiff_plain/7d19d0fd5608ffd538eaf15a398fd2cb231da13f..1c9a18a31c533e3b32315ab835e96d725c94dcf4:/base/.zshenv diff --git a/base/.zshenv b/base/.zshenv index 1809f47..9fa140f 100644 --- a/base/.zshenv +++ b/base/.zshenv @@ -23,15 +23,24 @@ export XDG_RUNTIME_DIR=~/tmp export PYTHONSTARTUP=~/.pythonrc ## perl (( ${+commands[perl]} )) && eval $(perl -I $XDG_DATA_HOME/perl5/lib/perl5 -Mlocal::lib=$XDG_DATA_HOME/perl5) +## gpg +if (( ${+commands[gpg]} )) { + export GPG_TTY=$(tty) + if [[ ! -v SSH_AUTH_SOCK ]] { + # set up SSH auth socket and start GPG agent + export SSH_AUTH_SOCK=$(gpgconf --list-dirs agent-ssh-socket) + } + gpg-connect-agent updatestartuptty /bye >/dev/null +} ### freebsd -if [[ "$OSTYPE" =~ "^freebsd" ]]; then +if [[ "$OSTYPE" =~ "^freebsd" ]] { export CLICOLOR= export LS_COLORS='di=34:ln=35:so=32:pi=33:ex=31:bd=46;34:cd=43;34:su=41;30:sg=46;30:tw=42;30:ow=43;30' -fi +} ### load site-specific -if [[ -e "~/.zshenv.local" ]] && [[ ! -v _ZSHENV_LOADED ]] { +if [[ -f ~/.zshenv.local ]] && [[ ! -v _ZSHENV_LOADED ]] { export _ZSHENV_LOADED= source ~/.zshenv.local }