1
0
mirror of https://github.com/balkian/dotfiles.git synced 2025-08-23 08:02:19 +00:00

Added SSH_AUTH_SOCKET fix

This commit is contained in:
J.Fernando Sánchez
2013-03-26 02:57:43 +01:00
parent 115a9e3118
commit 70de8170b0
4 changed files with 19 additions and 22 deletions

11
bashrc
View File

@@ -1,3 +1,4 @@
source ~/.starttmux
# If not running interactively, don't do anything
[ -z "$PS1" ] && return
@@ -174,16 +175,6 @@ PS0="$PS0 \\[\033[1;32m\]\$(parse_git_branch)\\[\033[0m\]\$ "
export PATH=$PATH:"/media/Data/code/personal-scripts/"
export CDPATH=$CDPATH:"/media/Data/"
# TMUX
if which tmux 2>&1 >/dev/null; then
# if no session is started, start a new session
test -z ${TMUX} && tmux attach
# when quitting tmux, try to attach
if test -z ${TMUX}; then
exit;
fi
fi
PATH=$PATH:$HOME/.rvm/bin # Add RVM to PATH for scripting
### Added by the Heroku Toolbelt