summaryrefslogtreecommitdiffstatshomepage
path: root/bash/.profile
diff options
context:
space:
mode:
Diffstat (limited to 'bash/.profile')
-rw-r--r--bash/.profile5
1 files changed, 5 insertions, 0 deletions
diff --git a/bash/.profile b/bash/.profile
index 33b9553..75629f5 100644
--- a/bash/.profile
+++ b/bash/.profile
@@ -8,6 +8,11 @@ export XDG_RUNTIME_DIR=${XDG_RUNTIME_DIR:-/run/user/"$UID"}
export ZDOTDIR="$XDG_CONFIG_HOME"/zsh
export BASH_COMPLETION_USER_DIR="$XDG_DATA_HOME"/bash-completion/completions
+# GPG/SSH
+export GPG_TTY="$(tty)"
+export GPG_AGENT_SOCK=$(gpgconf --list-dirs agent-socket)
+export SSH_AUTH_SOCK=$(gpgconf --list-dirs agent-ssh-socket)
+
# Misc
export EDITOR="$( command -v nvim 2>/dev/null || command -v vim 2>/dev/null || command -v vi )"
export BROWSER="firefox"