2013-02-26 19:05:22 +00:00
|
|
|
# Configuration variables
|
|
|
|
# Automatically start tmux
|
2013-02-26 22:50:15 +00:00
|
|
|
[[ -n "$ZSH_TMUX_AUTOSTART" ]] || ZSH_TMUX_AUTOSTART=false
|
2013-02-26 19:05:22 +00:00
|
|
|
# Automatically connect to a previous session if it exists
|
2013-02-26 22:50:15 +00:00
|
|
|
[[ -n "$ZSH_TMUX_AUTOCONNECT" ]] || ZSH_TMUX_AUTOCONNECT=true
|
2013-02-26 19:05:22 +00:00
|
|
|
# Automatically close the terminal when tmux exits
|
2013-02-26 22:50:15 +00:00
|
|
|
[[ -n "$ZSH_TMUX_AUTOQUIT" ]] || ZSH_TMUX_AUTOQUIT=$ZSH_TMUX_AUTOSTART
|
2013-02-26 19:05:22 +00:00
|
|
|
# Set term to screen or screen-256color based on current terminal support
|
2013-02-26 22:50:15 +00:00
|
|
|
[[ -n "$ZSH_TMUX_FIXTERM" ]] || ZSH_TMUX_AUTOCONNECT=true
|
2013-02-26 19:05:22 +00:00
|
|
|
|
|
|
|
# Get the absolute path to the current directory
|
|
|
|
local zsh_tmux_plugin_path="$(cd "$(dirname "$0")" && pwd)"
|
2013-02-26 22:50:15 +00:00
|
|
|
|
|
|
|
# Local variable to store the local config file to use, if any.
|
|
|
|
local fixed_config=""
|
|
|
|
|
|
|
|
# Set the correct local config file to use
|
|
|
|
if [[ "$ZSH_TMUX_FIXTERM" == "true" ]]
|
|
|
|
then
|
|
|
|
if [[ -f $HOME/.tmux.conf || -h $HOME/.tmux.conf ]]
|
|
|
|
then
|
|
|
|
fixed_config=$zsh_tmux_plugin_path/tmux.extra.conf
|
|
|
|
else
|
|
|
|
fixed_config=$zsh_tmux_plugin_path/tmux.only.conf
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Override tmux with our function
|
|
|
|
function zsh_tmux_plugin_start()
|
|
|
|
{
|
|
|
|
if [[ "$ZSH_TMUX_AUTOCONNECT" == "true" ]]
|
|
|
|
then
|
|
|
|
\tmux attach || tmux -f $fixed_config new-session
|
|
|
|
[[ "$ZSH_TMUX_AUTOQUIT" == "true" ]] && exit
|
|
|
|
else
|
|
|
|
\tmux -f $fixed_config
|
|
|
|
[[ "$ZSH_TMUX_AUTOQUIT" == "true" ]] && exit
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
alias tmux=zsh_tmux_plugin_start
|