From 2d39db3401bb68495192646aac1cd8f4eb0fcd8b Mon Sep 17 00:00:00 2001 From: Michael Housh Date: Sun, 24 Mar 2024 17:19:52 -0400 Subject: [PATCH] Adds tka alias to quickly kill tmux server and all it's sessions --- zsh/config/.zshrc | 1 + 1 file changed, 1 insertion(+) diff --git a/zsh/config/.zshrc b/zsh/config/.zshrc index e7eddb5..984f52a 100755 --- a/zsh/config/.zshrc +++ b/zsh/config/.zshrc @@ -161,6 +161,7 @@ alias l='ls -lahH --color=auto' # better ls command. alias lfs='ls -lahH --color=auto "$ZDOTDIR/functions"' # List functions. alias reload='exec zsh -l' # reload the shell, useful when making changes. alias t='tmux' # access tmux quickly +alias tka='tmux kill-server' # kill tmux server and all sessions. alias ts='~/.local/scripts/tmux-sessionator' # create new tmux session, fuzzy finding common locations. alias tss='~/.local/scripts/tmux-sessionator --choose' # attach to an existing tmux session. alias tls='tmux list-sessions' # list tmux sessions