1
0
mirror of https://github.com/vbrandl/dotfiles synced 2024-11-23 00:13:49 +01:00

Search case insensitive

This commit is contained in:
Valentin Brandl 2019-04-28 21:30:55 +02:00
parent 1fac8720d0
commit 3cce0a0d78
No known key found for this signature in database
GPG Key ID: 30D341DD34118D7D

View File

@ -290,7 +290,7 @@ let g:ctrlp_switch_buffer=0
" use ripgrep if available " use ripgrep if available
if executable('rg') if executable('rg')
set grepprg=rg\ --color=never set grepprg=rg\ --color=never
let g:ctrlp_user_command='rg %s --files --color=never --glob ""' let g:ctrlp_user_command='rg %s --files -i --color=never --glob ""'
let g:ctrlp_use_caching=0 let g:ctrlp_use_caching=0
endif endif
" use ag if available " use ag if available