search hidden files
This commit is contained in:
parent
be6175ce98
commit
b955b9c043
2 changed files with 20 additions and 1 deletions
15
init.lua
15
init.lua
|
|
@ -414,6 +414,21 @@ require('telescope').setup {
|
|||
},
|
||||
},
|
||||
},
|
||||
pickers = {
|
||||
find_files = {
|
||||
hidden = true,
|
||||
},
|
||||
live_grep = {
|
||||
additional_args = function()
|
||||
return { '--hidden', '--glob', '!**/.git/*' }
|
||||
end,
|
||||
},
|
||||
grep_string = {
|
||||
additional_args = function()
|
||||
return { '--hidden', '--glob', '!**/.git/*' }
|
||||
end,
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
-- Enable telescope fzf native, if installed
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue