1
0
mirror of https://github.com/danbee/dotfiles-local synced 2025-03-04 08:49:07 +00:00

Use RG for CtrlP if available

This commit is contained in:
Daniel Barber 2017-12-07 14:40:53 -05:00
parent db4f5d9e92
commit a6c52c68a6
Signed by: danbarber
GPG Key ID: 931D8112E0103DD8

5
vim/vimrc.d/ctrlp.vim Normal file
View File

@ -0,0 +1,5 @@
if executable('rg')
set grepprg=rg\ --color=never
let g:ctrlp_user_command = 'rg %s --files --color=never --glob ""'
let g:ctrlp_use_caching = 0
endif