1export XDG_CONFIG_HOME="$HOME/.config"2export XDG_DATA_HOME="$HOME/.local/share"3export XDG_CACHE_HOME="$XDG_CONFIG_HOME/cache"45if test -z "${XDG_RUNTIME_DIR}"; then6 export XDG_RUNTIME_DIR=/tmp/$(id -u)-runtime-dir7 if ! test -d "${XDG_RUNTIME_DIR}"; then8 mkdir "${XDG_RUNTIME_DIR}"9 chmod 0700 "${XDG_RUNTIME_DIR}"10 fi11fi1213# alpine linux autoload plugins14ZSH_LOAD_SYSTEM_PLUGINS=yes1516export PYTHONUSERBASE="$HOME/.local/share/python"1718[ -x "$(command -v gpgconf)" ] && export SSH_AUTH_SOCK=$(gpgconf --list-dirs agent-ssh-socket)19export GPG_TTY=$(tty)2021if [ -x "$(command -v edit)" ] ; then22 export EDITOR=edit23elif [ -x "$(command -v emacs)" ]; then24 export EDITOR="emacsclient -a \"emacs\" -t"25fi2627export PASSWORD_STORE_CHARACTER_SET='[A-Za-z0-9!@?%^_=*#&]'28# firefox wayland29export MOZ_WEBRENDER=130export MOZ_ENABLE_WAYLAND=1313233export SDL_VIDEODRIVER=wayland34export _JAVA_AWT_WM_NONREPARENTING=135export QT_QPA_PLATFORM=wayland36export XDG_CURRENT_DESKTOP=sway37export XDG_SESSION_DESKTOP=sway3839export BAT_THEME="ansi"40# export RESTIC_REPOSITORY='sftp:tei:/store/Backup/reisen'41# export RESTIC_PASSWORD_COMMAND='pass tool/restic/reisen'4243[ -f "/etc/ca-certificates/trust-source/anchors/ca.pem" ] && export NODE_EXTRA_CA_CERTS=/etc/ca-certificates/trust-source/anchors/ca.pem44export NODE_ENV=development4546export RCLONE_PASSWORD_COMMAND='pass tool/rclone'4748if [ -f "$HOME/.zshenv" ]; then source $HOME/.zshenv; fi # this for alpine, because of global rc, $HOME/.zshenv will not loaded4950GOPATH=/home/lindsay/.local/go51