mirror of
https://github.com/chenasraf/dotfiles.git
synced 2026-05-17 17:28:07 +00:00
feat(tmux): update ta alias
This commit is contained in:
@@ -108,7 +108,6 @@ alias ldc="lazydocker"
|
||||
alias tmux="tmux -f ~/.config/tmux/conf.tmux"
|
||||
alias tn="tmux new"
|
||||
alias tns="tmux new -s"
|
||||
alias ta="tmux attach"
|
||||
alias tas="tmux attach -t"
|
||||
alias tlw="tmux list-windows"
|
||||
alias trl="tmux source-file ~/.config/tmux/conf.tmux"
|
||||
|
||||
3
plugins/common/tmux.zsh
Normal file
3
plugins/common/tmux.zsh
Normal file
@@ -0,0 +1,3 @@
|
||||
#!/usr/bin/env zsh
|
||||
|
||||
ta() { [[ -n "$1" ]] && tmux attach -t "$1" || tmux attach; }
|
||||
Reference in New Issue
Block a user