@@ -0,0 +1,4 @@
+set -g default-terminal "tmux-256color"
+bind '"' split-window -c "#{pane_current_path}"
+bind % split-window -h -c "#{pane_current_path}"
+bind C new-window -c "#{pane_current_path}"
@@ -402,3 +402,6 @@ zstyle ':vcs_info:*' actionformats "${MAGENTA}(${NO_COLOR}%s${MAGENTA})${YELLOW}
zstyle ':vcs_info:*' formats "${MAGENTA}(${NO_COLOR}%s${MAGENTA})${YELLOW}-${MAGENTA}[${GREEN}%b%u%c${MAGENTA}]${NO_COLOR}%} " "zsh: %r"
setopt HIST_IGNORE_SPACE
+
+ps -p $SSH_AGENT_PID > /dev/null || eval `ssh-agent -s`
+ssh-add -l | grep sevikgr > /dev/null 2>&1 || (echo "Adding ssh-key to ssh-agent"; ssh-add)