diff options
Diffstat (limited to 'base/bashrc')
-rw-r--r-- | base/bashrc | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/base/bashrc b/base/bashrc index 3642bd7..18ba4b2 100644 --- a/base/bashrc +++ b/base/bashrc @@ -49,6 +49,9 @@ if [ -n "$force_color_prompt" ]; then fi fi +if [ -f $(brew --prefix)/etc/bash_completion ]; then + . $(brew --prefix)/etc/bash_completion +fi GIT_PS1_SHOWDIRTYSTATE=1 if [ "$color_prompt" = yes ]; then @@ -108,6 +111,16 @@ fi export EDITOR=vim export MAILDIR=$HOME/.maildir/INBOX +export SSH_AUTH_SOCK=$HOME/.gnupg/S.gpg-agent.ssh +#if [ -f "${HOME}/.gpg-agent-info" ]; then +# . "${HOME}/.gpg-agent-info" +# export GPG_AGENT_INFO +# export SSH_AUTH_SOCK +# export SSH_AGENT_PID +#fi + +source /usr/local/etc/bash_completion.d/* + if [ -f ~/.shell_pathes ]; then source ~/.shell_pathes fi |