fixed tmux alias, so tmux command isn't lost

This commit is contained in:
TheFlyingFool 2025-03-05 21:25:19 -06:00
parent 8ccb918b47
commit 251f7b2cfd

9
.alias
View File

@ -15,7 +15,14 @@
alias vi="vim" #Insure vim
alias tmux='tmux attach || tmux'
tmux_alias() {
if [[ $# -eq 0 ]]; then
tmux attach
else
tmux "$@"
fi
}
alias tmux=tmux_alias
#Coloration of core utils
alias grep="grep -n --color=auto" #grep
alias egrep='egrep --color=auto'