vifm: Set rg as program to grep with

This commit is contained in:
Marty Oehme 2023-03-19 14:52:11 +01:00
parent 98892fbc89
commit dc20b23b0a
Signed by: Marty
GPG key ID: EDBF2ED917B2EF6A

View file

@ -110,6 +110,9 @@ set timeoutlen=5000
" use fd instead of default find to make searching faster and more flexible " use fd instead of default find to make searching faster and more flexible
set findprg='fd %A --hidden --exclude .git --exclude node_modules' set findprg='fd %A --hidden --exclude .git --exclude node_modules'
" Use ag (the silver searcher) instead of grep
set grepprg='rg --line-number %i %a %s'
" }}} " }}}
" Marks {{{ " Marks {{{
" ------------------------------------------------------------------------------ " ------------------------------------------------------------------------------