diff --git a/zsh/ripgrep.zsh b/zsh/ripgrep.zsh index b492628..b4c14ba 100644 --- a/zsh/ripgrep.zsh +++ b/zsh/ripgrep.zsh @@ -1,6 +1,9 @@ -#RG="rg" -RG="rga" -RIPGREP_ARGS="-i --no-ignore-vcs" +# Parameters +# You can on the fly reassign the values and update all the aliases with `zshrefresh` + +#RG="${RG:-rg}" +RG="${RG:-rga}" +RIPGREP_ARGS="${RIPGREP_ARGS:--i}" # Common Data alias ripgrep_data_urls="$RG $RIPGREP_ARGS 'data:(.*?)(;base64)?,(.*)'"