1
0
mirror of https://github.com/balkian/dotfiles.git synced 2025-08-23 16: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

12
zshrc
View File

@@ -1,3 +1,4 @@
source ~/.starttmux
# Path to your oh-my-zsh configuration.
ZSH=$HOME/.oh-my-zsh
@@ -44,17 +45,6 @@ export PATH=/usr/lib/lightdm/lightdm:/usr/local/sbin:/usr/local/bin:/usr/sbin:/u
PYTHONSTARTUP=~/.pythonrc.py
export PYTHONSTARTUP
# TMUX
# if [[ -z "$KONSOLE_DBUS_SERVICE" & `which tmux` ]]; then
# if no session is started, start a new session
if [[ -z "$KONSOLE_DBUS_SERVICE" && -n $(which tmux) ]]; then
stty -ixon
test -z ${TMUX} && tmux attach
# when quitting tmux, try to attach
if [[ -z ${TMUX} ]]; then
exit;
fi
fi
### Added by the Heroku Toolbelt
export PATH="/usr/local/heroku/bin:$PATH"