feat(nvim): enable hidden files in telescope's find files

This commit is contained in:
Kyren223
2024-08-04 00:55:32 +03:00
parent 9c581619be
commit b8ba9d1bbf

View File

@@ -1,7 +1,7 @@
local telescope = require('telescope')
telescope.setup({
pickers = {
find_files = { follow = true },
find_files = { follow = true, hidden = true },
grep_string = { additional_args = '--follow' },
live_grep = { additional_args = '--follow' },
},