summaryrefslogtreecommitdiff
path: root/base/bashrc
diff options
context:
space:
mode:
authorJesse Morgan <jesse@jesterpm.net>2013-01-09 16:45:04 -0800
committerJesse Morgan <morganjm@amazon.com>2013-01-09 16:45:04 -0800
commit4e52a7884016a776cbd46d67d09324f2d80a9dc6 (patch)
treed80730dbb51309a0e617b15b0725c1c1b8f13be4 /base/bashrc
parentd6cdd193535b974a70071b992bcb44a5b9efe26e (diff)
Various changes to make offlineimap work better on my laptop.
Diffstat (limited to 'base/bashrc')
-rw-r--r--base/bashrc13
1 files changed, 13 insertions, 0 deletions
diff --git a/base/bashrc b/base/bashrc
index 204fcf0..b7f87f1 100644
--- a/base/bashrc
+++ b/base/bashrc
@@ -103,12 +103,25 @@ if [ -f /etc/bash_completion ] && ! shopt -oq posix; then
fi
# Personal Settings
+export TERMINAL=gnome-terminal
export EDITOR=vim
+export MAILDIR=$HOME/.maildir/INBOX
if [ -f ~/.shell_pathes ]; then
source ~/.shell_pathes
fi
+# GPG
+if [ -f "${HOME}/.gpg-agent-info" ]; then
+ . "${HOME}/.gpg-agent-info"
+ export GPG_AGENT_INFO
+ export SSH_AUTH_SOCK
+fi
+
+GPG_TTY=$(tty)
+export GPG_TTY
+
+
# Host Specific Settings
if [ -f ~/.host-specific/bashrc ]; then
source ~/.host-specific/bashrc