From df053d7066f514029025dca3e30dad88fe793357 Mon Sep 17 00:00:00 2001 From: Thomas Ruoff Date: Sun, 3 Jan 2021 23:36:55 +0100 Subject: [PATCH] fzf.vim improved quite a bit. replacing grepper Please enter the commit message for your changes. Lines starting --- vim/.vimrc | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/vim/.vimrc b/vim/.vimrc index 17da1a1..f64df9b 100644 --- a/vim/.vimrc +++ b/vim/.vimrc @@ -76,12 +76,9 @@ Plug 'junegunn/fzf.vim' nnoremap w :Windows nnoremap m :Maps nnoremap h :Helptags - -Plug 'mhinz/vim-grepper' - nnoremap / :Grepper -tool rg - nnoremap * :Grepper -tool rg -cword -noprompt - let g:grepper = {} - let g:grepper.tools = ['rg', 'git', 'ag', 'grep'] + nnoremap / :Rg + nnoremap * :Rg + nnoremap C :Commands Plug 'editorconfig/editorconfig-vim' let g:EditorConfig_exclude_patterns = ['fugitive://.*', 'scp://.*']