From df63ae617682100a3221e82d276de2c09c748638 Mon Sep 17 00:00:00 2001 From: Daniil Tsivinsky Date: Wed, 18 May 2022 09:47:10 +0300 Subject: [PATCH] add bash aliases for tmux --- config/.config/bash/aliases.bash | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/config/.config/bash/aliases.bash b/config/.config/bash/aliases.bash index b02a257..f87614f 100644 --- a/config/.config/bash/aliases.bash +++ b/config/.config/bash/aliases.bash @@ -17,12 +17,17 @@ declare -A aliases=( ["ll"]="ls -l" ["ed"]="$EDITOR" ["c"]="clear" - ["t"]="tmux" ["pacman"]="pacman --color auto" ["yay"]="yay --color auto" ["q"]="exit" ["tree"]="tree -C" + # Tmux + ["t"]="tmux" + ["tl"]="tmux ls" + ["ta"]="tmux attach" + ["tn"]="tmux new-session" + # Git ["g"]="git" ["ga"]="git add"