-(( ${+commands[perl]} )) && eval $(perl -I $XDG_DATA_HOME/perl5/lib/perl5 -Mlocal::lib=$XDG_DATA_HOME/perl5 2>/dev/null)
-## gpg
-if (( ${+commands[gpg]} )) {
- # SSH_AUTH_SOCK should be set in a remote SSH session for passthrough
- # if it isn't, we are likely the first login shell on the local machine
- if [[ ! -v SSH_AUTH_SOCK ]] {
- export GPG_TTY=$(tty)
- gpg-connect-agent UPDATESTARTUPTTY /bye >/dev/null
- export SSH_AUTH_SOCK=$(gpgconf --list-dirs agent-ssh-socket)
- }
-}
-## xdg
-export XDG_CONFIG_HOME=~/etc
-export XDG_CONFIG_DIRS=~/.config:/usr/pkg/etc/xdg:/usr/local/etc/xdg:/etc/xdg
-export XDG_DATA_HOME=~/share
-export XDG_DATA_DIRS=~/.local/share:/usr/pkg/share:/usr/local/share:/usr/share
-export XDG_CACHE_HOME=~/tmp
-export XDG_RUNTIME_DIR=~/tmp
-## grep
-# XXX: deprecated in GNU
-export GREP_OPTIONS=--color=auto
-
-### tmp
-t="${TMPDIR:-/tmp}/home-$LOGNAME"
-h="$HOME/tmp"
-if [[ ! -e "$t" ]] {
- mkdir -m 700 "$t" > /dev/null 2>&1
- #TODO: check if dir exists after mkdir
-}
-#allow opaque entries to override link creation
-if [[ ! -e "$h" ]] {
- ln -sf "$t" "$h" > /dev/null 2>&1
-}
-unset t
-unset h