mirror of
https://github.com/dcarrillo/prezto.git
synced 2024-11-01 03:51:12 +00:00
ff0dfa424d
Signed-off-by: Sorin Ionescu <sorin.ionescu@gmail.com>
44 lines
1.0 KiB
Bash
44 lines
1.0 KiB
Bash
#
|
|
# Defines tmux aliases and provides for auto launching it at start-up.
|
|
#
|
|
# Authors:
|
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
|
# Colin Hebert <hebert.colin@gmail.com>
|
|
# Georges Discry <georges@discry.be>
|
|
# Xavier Cambar <xcambar@gmail.com>
|
|
#
|
|
|
|
# Return if requirements are not found.
|
|
if (( ! $+commands[tmux] )); then
|
|
return 1
|
|
fi
|
|
|
|
#
|
|
# Auto Start
|
|
#
|
|
|
|
if [[ -z "$TMUX" && -z "$EMACS" && -z "$VIM" ]] && ( \
|
|
( [[ -n "$SSH_TTY" ]] && zstyle -t ':prezto:module:tmux:auto-start' remote ) ||
|
|
( [[ -z "$SSH_TTY" ]] && zstyle -t ':prezto:module:tmux:auto-start' local ) \
|
|
); then
|
|
tmux start-server
|
|
|
|
# Create a 'prezto' session if no session has been defined in tmux.conf.
|
|
if ! tmux has-session 2> /dev/null; then
|
|
tmux_session='prezto'
|
|
tmux \
|
|
new-session -d -s "$tmux_session" \; \
|
|
set-option -t "$tmux_session" destroy-unattached off &> /dev/null
|
|
fi
|
|
|
|
# Attach to the 'prezto' session or to the last session used.
|
|
exec tmux attach-session
|
|
fi
|
|
|
|
#
|
|
# Aliases
|
|
#
|
|
|
|
alias tmuxa='tmux attach-session'
|
|
alias tmuxl='tmux list-sessions'
|