From 5177ac3a60c86a2bcbe4508501611b4a71ca2b0e Mon Sep 17 00:00:00 2001 From: Sorin Ionescu Date: Mon, 26 Mar 2012 13:32:30 -0400 Subject: [PATCH] [#63] Re-add the tmux plugin This reverts commit da7c67d1da564854a62c371a70048c54f2b3b68a. --- plugins/tmux/init.zsh | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 plugins/tmux/init.zsh diff --git a/plugins/tmux/init.zsh b/plugins/tmux/init.zsh new file mode 100644 index 00000000..ffd57380 --- /dev/null +++ b/plugins/tmux/init.zsh @@ -0,0 +1,33 @@ +# +# Defines tmux aliases and provides for auto launching it at start-up. +# +# Authors: +# Sorin Ionescu +# +# Usage: +# To auto start it, add the following to zshrc: +# +# # Auto launch tmux at start-up. +# zstyle -t ':omz:plugin:tmux:auto' start 'yes' +# + +# Aliases +alias ta="tmux attach-session" +alias tl="tmux list-sessions" + +# Auto Start +if (( $SHLVL == 1 )) && zstyle -t ':omz:plugin:tmux:auto' start; then + (( SHLVL += 1 )) && export SHLVL + + session="$( + tmux list-sessions 2> /dev/null \ + | cut -d':' -f1 \ + | head -1)" + + if [[ -n "$session" ]]; then + exec tmux attach-session -t "$session" + else + exec tmux new-session + fi +fi +