]> git.sev.monster Git - dotfiles.git/blobdiff - base/.zprofile
actually set PINENTRY_USER_DATA, fix invocation
[dotfiles.git] / base / .zprofile
index 3cc9587f4a8ca226db0490aa259a41ac6bf7f791..a0e4d369dde661480e70b46e5b3cf81b46187a6d 100644 (file)
@@ -1,12 +1,67 @@
-#XXX: ensure we override /etc/profile, gets loaded after .zshenv
-source ~/.zshenv
+### general exports
+export EDITOR=vim
+export PAGER=less
+## lang
+export CHARSET=UTF-8
+export LANG="en_US.UTF-8"
+export LC_CTYPE="$LANG"
+## histfile
+export HISTFILE=~/.histfile
+export HISTSIZE=1000
+export SAVEHIST=1000
+## path
+# /usr/{pkg,local,games} are unix/bsdisms
+typeset -U PATH path
+path=({~/,/,/usr/}sbin {~/,/,/usr/}bin /usr/pkg/{s,}bin /usr/X11R{7,6}/bin
+      /usr/local/{s,}bin /usr/games "${path[@]}")
+export PATH
+typeset -U FPATH fpath
+fpath=(~/.zsh/functions/Prompts "${fpath[@]}")
+export FPATH
 
-t="/tmp/home-$LOGNAME"
+### applications
+## python
+export PYTHONSTARTUP=~/.pythonrc
+## perl
+(( ${+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
+    # we also want to update USE_TTY if we are the login shell in graphics mode
+    if [[ ! -v SSH_AUTH_SOCK || -v DISPLAY ]] {
+        export GPG_TTY=$(tty)
+        export PINENTRY_USER_DATA=USE_TTY=$((! ${+DISPLAY}))
+        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
+    mkdir -m 700 "$t" > /dev/null 2>&1
+    #TODO: check if dir exists after mkdir
 }
-#allow opaque entries to override
+#allow opaque entries to override link creation
 if [[ ! -e "$h" ]] {
-       ln -sf "$t" "$h" > /dev/null 2>&1
+    ln -sf "$t" "$h" > /dev/null 2>&1
 }
+unset t
+unset h
+
+### load site-specific
+if [[ -f ~/.zprofile.local ]] { source ~/.zprofile.local }
+
+# vim: set et sts=4 sw=4 ts=8 tw=79 :
This page took 0.034877 seconds and 4 git commands to generate.