feat(explorer): disable fuzzy searches by default for explorer since it's too noisy and we can't sort on score due to tree view

This commit is contained in:
Folke Lemaitre 2025-02-04 22:18:43 +01:00
parent d4e63531c9
commit b07788f14a
No known key found for this signature in database
GPG key ID: 41F8B1FBACAE2040

View file

@ -59,7 +59,7 @@ M.explorer = {
-- your config under `opts.picker.sources.explorer`
-- layout = { layout = { position = "right" } },
formatters = { file = { filename_only = true } },
matcher = { sort_empty = false },
matcher = { sort_empty = false, fuzzy = false },
config = function(opts)
return require("snacks.picker.source.explorer").setup(opts)
end,