dotfiles/bash/bashrc.aliases

15 lines
374 B
Plaintext

# ls aliases
alias ll='ls -l'
# Git aliases
alias tgp='time git pull'
alias gf='git fetch'
# Tmux aliases
# Use this to launch in 16-color mode
alias tmux='TERM=xterm-16color tmux -2 -u'
# Attach to an existing tmux session
alias work='TERM=xterm-16color tmux -2 -u attach -d'
# Trigger tmux to reopen the socket if it cannot attach
alias kick='pkill -USR1 -u $USER tmux'