X-Git-Url: https://git.donarmstrong.com/?p=home-base.git;a=blobdiff_plain;f=.bashrc;h=c1bdbbe70e271d6c9d7ca03c3a31cc6b84f9ea0d;hp=a222b7ec8e6886c0d1374ad6648f1478c96b151a;hb=f6485eb8f3af1f0f1191e4fbcfc5e883aa8bcd5f;hpb=8dd298f4e01d4fae132ba73fa814e119add780d1 diff --git a/.bashrc b/.bashrc index a222b7e..c1bdbbe 100644 --- a/.bashrc +++ b/.bashrc @@ -20,7 +20,12 @@ if [ "$PS1" ]; then fi; # bts debian options + if [ -e bin/faf ]; then + complete -F _command faf + fi; + export DEBEMAIL="don@debian.org" + export DEBHOME="$(eval 'echo' '~/projects/debian')" # enable color support of ls and also add handy aliases eval `dircolors -b` @@ -99,7 +104,8 @@ if [ "$PS1" ]; then fi; # set up ssh-agent - if which ssh-agent >/dev/null && [ -d ~/.ssh ]; then + if which ssh-agent >/dev/null && [ -d ~/.ssh ] && \ + [ -z "$SSH_CONNECTION" ] && [ -z "$SSH_CLIENT" ]; then # for if [ -e ~/.ssh/ssh_agent_info ] && \ [ -n "$(awk -F '[=;]' '/^SSH_AGENT_PID/{print $2}' ~/.ssh/ssh_agent_info)" ] && \ @@ -121,7 +127,13 @@ if [ "$PS1" ]; then LANG=C fi; export LANG + + # If we're running on liszt, include /var/list/.bin in the path + if [ "$(hostname)" == "liszt" ] && [ -d /var/list/.bin ]; then + PATH="/var/list/.bin:$PATH" + fi; export PATH="~/bin:$PATH" + if [ ! -e ~/tmp ]; then mkdir ~/tmp; fi; @@ -136,7 +148,12 @@ if [ "$PS1" ]; then cd () { - builtin cd "$@" && [ -r .todo ] && devtodo ${TODO_OPTIONS} + # use pushd instead of cd + if [ -z "$1" ] || [ "$1" == "-" ]; then + builtin cd "$@" && [ -r .todo ] && devtodo ${TODO_OPTIONS}; + else + builtin pushd "$@" >/dev/null && [ -r .todo ] && devtodo ${TODO_OPTIONS}; + fi; } pushd ()