mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-01-02 02:19:06 +01:00
Added missing FX and named colors to spectrum.
This commit is contained in:
parent
05c94e2dd5
commit
b65195156d
39 changed files with 57 additions and 16 deletions
22
plugins/tmux/init.zsh
Normal file
22
plugins/tmux/init.zsh
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
# ------------------------------------------------------------------------------
|
||||
# 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
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue