tmux.plugin.zsh 1.53 KB
Newer Older
1
2
# Configuration variables
# Automatically start tmux
3
[[ -n "$ZSH_TMUX_AUTOSTART" ]] || ZSH_TMUX_AUTOSTART=false
4
# Automatically connect to a previous session if it exists
5
[[ -n "$ZSH_TMUX_AUTOCONNECT" ]] || ZSH_TMUX_AUTOCONNECT=true
6
# Automatically close the terminal when tmux exits
7
[[ -n "$ZSH_TMUX_AUTOQUIT" ]] || ZSH_TMUX_AUTOQUIT=$ZSH_TMUX_AUTOSTART
8
# Set term to screen or screen-256color based on current terminal support
9
[[ -n "$ZSH_TMUX_FIXTERM" ]] || ZSH_TMUX_AUTOCONNECT=true
10
11
12

# Get the absolute path to the current directory
local zsh_tmux_plugin_path="$(cd "$(dirname "$0")" && pwd)"
13

14
15
16
17
18
19
20
21
# Determine if the terminal supports 256 colors
if [[ `tput colors` == "256" ]]
then
	export $ZSH_TMUX_TERM="screen-256"
else
	export $ZSH_TMUX_TERM="screen"
fi

22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# 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()
{
39
40
41
42
43
44
	# We have other arguments, just run them
	if [[ ! -n "$@" ]]
	then
		\tmux $@
	# Try to connect to an existing session.
	elif [[ "$ZSH_TMUX_AUTOCONNECT" == "true" ]]
45
46
47
48
49
50
51
52
53
54
	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