dotfiles/bash/bash_aliases
c47 da20795969 Add `-b' to 'cal' alias
Added `-b' to 'cal' alias to have traditional cal output and to get back
the ability to print a whole year with -y.
2024-02-03 09:43:04 +01:00

16 lines
334 B
Bash

alias vim='nvim'
alias :e='vim'
alias :q='exit'
alias T='tmux a'
if [[ -f ${HOME}/.bash_aliases.local ]]; then
source ${HOME}/.bash_aliases.local
fi
alias R='rem -b1 -mclc+6'
alias RR='rem -b1 -mclc+6 -iprivate=1'
alias r='rem -b1 -mclc+4'
alias rr='rem -b1 -mclc+4 -iprivate=1'
alias rrm='rem -b1 -imoon=1'
alias cal='ncal -bM'