From 64b5dbfaba6e07c5fb3a3f9bcc162fe4a176cb19 Mon Sep 17 00:00:00 2001 From: Aaron Gutierrez Date: Thu, 30 May 2019 18:18:43 -0700 Subject: [PATCH] switch ripgrep for the silver searcher --- .vimrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.vimrc b/.vimrc index 43951e8..a73b88f 100644 --- a/.vimrc +++ b/.vimrc @@ -104,8 +104,8 @@ nmap :Files nmap :GFiles " Ack -if executable('ag') - let g:ackprg = 'ag --vimgrep' +if executable('rg') + let g:ackprg = 'rg --vimgrep' endif nmap a :Ack!