made symlinked files show up in telescope file picker

This commit is contained in:
voidarclabs
2026-01-04 19:30:52 +00:00
parent e563553a57
commit 9d65fdc908

View File

@@ -7,6 +7,12 @@ return {
defaults = { defaults = {
file_ignore_patterns = { ".git" }, file_ignore_patterns = { ".git" },
}, },
pickers = {
find_files = {
-- `hidden = true` will still show the inside of `.git/` as it's not `.gitignore`d.
find_command = { "rg", "--files", "--hidden", "--glob", "!**/.git/*", "-L" },
},
},
extensions = { extensions = {
file_browser = { file_browser = {
theme = "ivy", theme = "ivy",