mirror of
https://github.com/tedkulp/dotfiles
synced 2026-03-05 13:40:18 -05:00
8 lines
244 B
Bash
8 lines
244 B
Bash
export RIPGREP_CONFIG_PATH=$HOME/.config/ripgrep/config
|
|
alias r="rg"
|
|
alias ri="r --ignore-case"
|
|
alias ra="r --no-ignore"
|
|
alias rA="r --hidden --no-ignore"
|
|
alias ria="r --no-ignore --ignore-case"
|
|
alias riA="r --hidden --no-ignore --ignore-case"
|