1
0
Fork 0
forked from nya/nvim

show hidden files when using telescope find_files

This commit is contained in:
bunny winter 2025-01-06 12:17:38 -06:00
parent 56cd8ae0bf
commit 0d04a83c9a
Signed by: nya
SSH key fingerprint: SHA256:aFOeJZAb3Y7XJxd+BReehNPp/dmurGW9M13mIayeOm0

View file

@ -13,6 +13,11 @@ return {
require("telescope.themes").get_dropdown(), require("telescope.themes").get_dropdown(),
}, },
}, },
pickers = {
find_files = {
find_command = { "rg", "--files", "--hidden", "--glob", "!**/.git/*" },
},
},
}) })
pcall(require("telescope").load_extension, "ui-select") pcall(require("telescope").load_extension, "ui-select")