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.
28 lines
682 B
28 lines
682 B
return { |
|
"folke/snacks.nvim", |
|
opts = { |
|
explorer = { |
|
enabled = true, |
|
replace_netrw = true, |
|
}, |
|
dashboard = { enabled = true }, |
|
picker = { |
|
hidden = true, -- Show hidden files globally |
|
ignored = true, -- Show files ignored by .gitignore (optional) |
|
sources = { |
|
explorer = { |
|
lazy = true, |
|
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, |
|
}, |
|
}, |
|
}, |
|
}, |
|
}
|
|
|