2021-11-15 11:52:52 +00:00
|
|
|
#!/bin/zsh
|
2024-07-15 23:25:23 +00:00
|
|
|
#dep:rg
|
2021-11-15 11:52:52 +00:00
|
|
|
source ${$(realpath "$0"):h:h}/lib/next-in-path.zsh
|
2023-01-25 09:11:02 +00:00
|
|
|
RIPGREP_CONFIG_PATH=${XDG_CONFIG_HOME:-$HOME/.config}/ripgreprc
|
|
|
|
if [[ -e $RIPGREP_CONFIG_PATH ]]; then
|
|
|
|
export RIPGREP_CONFIG_PATH
|
|
|
|
fi
|
2021-11-15 11:52:52 +00:00
|
|
|
$(next-in-path rg $0) $@
|