chore: Remove rust env from .bashrc, move tmux aliases here, redundant

path setting removed from .profile
This commit is contained in:
Pratik Tripathy
2024-12-24 18:46:35 +05:30
parent 1ceab0a908
commit 614e22dd67
3 changed files with 7 additions and 4 deletions

View File

@@ -33,6 +33,13 @@ mkcd() {
cd "$1" || exit
}
# Tmux
command -v tmux >/dev/null && alias ta="tmux a"
command -v tmux >/dev/null && alias tat="tmux a -t"
command -v tmux >/dev/null && alias tls="tmux ls"
command -v tmux >/dev/null && alias tnew="tmux new"
command -v tmux >/dev/null && alias tnewt="tmux new -t"
# Network
alias ping="ping -c 10"
alias ping8="ping 8.8.8.8"