Launch tmux start-server for auto-start

This commit is contained in:
Colin Hebert 2013-05-07 00:32:15 +02:00
parent 23f62774f9
commit 30502b32eb

View file

@ -19,6 +19,9 @@ if [[ -z "$TMUX" ]] && zstyle -t ':prezto:module:tmux' auto-start; then
tmux_session='#Prezto' tmux_session='#Prezto'
if ! tmux has-session -t "$tmux_session" 2> /dev/null; then if ! tmux has-session -t "$tmux_session" 2> /dev/null; then
# Esnure that tmux server is started
tmux start-server
# Disable the destruction of unattached sessions globally. # Disable the destruction of unattached sessions globally.
tmux set-option -g destroy-unattached off &> /dev/null tmux set-option -g destroy-unattached off &> /dev/null