1
0
Fork 0

bashrc: group all ripgrep aliases together

This commit is contained in:
Pratham Patel 2024-01-09 22:51:09 +05:30
parent ef1f0bbcc4
commit dd29708fd2
Signed by: thefossguy
SSH Key Fingerprint: SHA256:/B3wAg7jnMEBQ2JwkebbS/eXVZANDmqRfnd9QkIhxMI
1 changed files with 2 additions and 2 deletions

View File

@ -76,7 +76,6 @@ alias serialterm='clear && picocom --quiet --baud 115200 /dev/ttyUSB0'
alias sudo='sudo --preserve-env=PATH env'
alias unxz='unxz --keep' # override 'unxz' with this to always keep the archive
alias update="source ${HOME}/.bashrc"
alias rgvi='rg --hidden --invert-match --ignore-case'
# rsync
alias custcp="rsync ${RSYNC_OPTIONS}"
@ -89,8 +88,9 @@ alias ytslow="yt-dlp --config-location ${HOME}/.config/yt-dlp/norm_config --no-p
# ripgrep
alias rgi='rg --hidden --ignore-case'
alias rgiv='rg --hidden --invert-match --ignore-case'
alias rgv='rg --hidden --invert-match'
alias rgiv='rg --hidden --invert-match --ignore-case'
alias rgvi='rg --hidden --invert-match --ignore-case'
# these only exist because I need to use 'g{ls,grep}' on macOS
alias grep="${GNU_GREP} --color=auto"