add bash aliases for tmux

This commit is contained in:
2022-05-18 09:47:10 +03:00
parent 139e2fe4dd
commit df63ae6176

View File

@@ -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"