fix: show hidden files with live grep
This commit is contained in:
parent
c7dc25c6d8
commit
2c702057ad
|
@ -31,7 +31,30 @@ return {
|
|||
},
|
||||
pickers = {
|
||||
find_files = {
|
||||
find_command = { 'rg', '-S', '--no-ignore-vcs', '--hidden', '--files', '-g', '!.git' },
|
||||
find_command = {
|
||||
'rg',
|
||||
'-S',
|
||||
'--no-ignore-vcs',
|
||||
'--hidden',
|
||||
'--files',
|
||||
'-g',
|
||||
'!.git',
|
||||
},
|
||||
},
|
||||
live_grep = {
|
||||
grep_command = {
|
||||
'rg',
|
||||
'--no-ignore-vcs',
|
||||
'--hidden',
|
||||
'--color=never',
|
||||
'--no-heading',
|
||||
'--with-filename',
|
||||
'--line-number',
|
||||
'--column',
|
||||
'--smart-case',
|
||||
'-g',
|
||||
'!.git',
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue