You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
689 B
22 lines
689 B
# ------------------------------------------------------------------------------ |
|
# FILE: tmux.plugin.zsh |
|
# DESCRIPTION: oh-my-zsh plugin file. |
|
# AUTHOR: Sorin Ionescu <sorin.ionescu@gmail.com> |
|
# VERSION: 1.0.0 |
|
# ------------------------------------------------------------------------------ |
|
|
|
# Aliases |
|
alias ta="tmux attach-session" |
|
alias tl="tmux list-sessions" |
|
|
|
# Auto |
|
if (( $SHLVL == 1 )) && check-bool "$AUTO_TMUX"; 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 "$SHELL -l" |
|
fi |
|
fi |
|
|
|
|