search hidden files
This commit is contained in:
parent
634c7b3c42
commit
d9e77802d9
2 changed files with 20 additions and 1 deletions
15
init.lua
15
init.lua
|
|
@ -521,6 +521,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