annotate zshrc-xanthippe @ 67:5af04798adef

source the gpg agent file, too
author Dirk Olmes <dirk@xanthippe.ping.de>
date Sat, 02 May 2015 02:44:00 +0200
parents b2d78d66fa8c
children 9222611c7a2e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4
cf017347e8bf add shell env for xanthippe
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
1 #
32
623fa595e0d6 fix comment
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 14
diff changeset
2 # zshrc for xanthippe
4
cf017347e8bf add shell env for xanthippe
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
3 #
cf017347e8bf add shell env for xanthippe
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
4
60
b2d78d66fa8c include the gpg agent info file
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 33
diff changeset
5 . ${HOME}/.zsh-env/zshrc-jdk
b2d78d66fa8c include the gpg agent info file
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 33
diff changeset
6 . ${HOME}/.zsh-env/zshrc-maven
b2d78d66fa8c include the gpg agent info file
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 33
diff changeset
7 . ${HOME}/.zsh-env/zshrc-bindkey
b2d78d66fa8c include the gpg agent info file
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 33
diff changeset
8
b2d78d66fa8c include the gpg agent info file
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 33
diff changeset
9 GPG_AGENT_FILE="${HOME}/.gnupg/.gpg-agent-info"
b2d78d66fa8c include the gpg agent info file
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 33
diff changeset
10 if [ -f "${GPG_AGENT_FILE}" ]; then
b2d78d66fa8c include the gpg agent info file
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 33
diff changeset
11 . "${GPG_AGENT_FILE}"
b2d78d66fa8c include the gpg agent info file
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 33
diff changeset
12 export GPG_AGENT_INFO
b2d78d66fa8c include the gpg agent info file
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 33
diff changeset
13 fi
4
cf017347e8bf add shell env for xanthippe
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
14
14
44cb360e19b6 set GPG_TTY env var
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 4
diff changeset
15 export GPG_TTY=`tty`
4
cf017347e8bf add shell env for xanthippe
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
16 export PATH="$HOME/bin:${PATH}"