You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
549 B
22 lines
549 B
return { |
|
"folke/snacks.nvim", |
|
opts = { |
|
picker = { |
|
hidden = true, -- Show hidden files globally |
|
ignored = true, -- Show files ignored by .gitignore (optional) |
|
sources = { |
|
explorer = { |
|
hidden = true, -- Explicitly for the file explorer |
|
ignored = true, -- Explicitly for ignored files |
|
exclude = { -- Exclude specific patterns like .git |
|
"**/.git", |
|
"**/.DS_Store", |
|
}, |
|
}, |
|
files = { |
|
hidden = true, |
|
}, |
|
}, |
|
}, |
|
}, |
|
}
|
|
|