Auto commit: 2024-11-09 20:10:02

This commit is contained in:
Daniel Fichtinger 2024-11-09 20:10:02 -05:00
parent a09558c336
commit a9db76fabb

View file

@ -1,3 +1,6 @@
local filter_hide = function(fs_entry)
return not vim.startswith(fs_entry.name, ".")
end
return { return {
"echasnovski/mini.files", "echasnovski/mini.files",
lazy = false, lazy = false,
@ -25,6 +28,9 @@ return {
}, },
}, },
opts = { opts = {
content = {
filter = filter_hide,
},
mappings = { mappings = {
go_in_plus = "<CR>", go_in_plus = "<CR>",
synchronize = ":w", synchronize = ":w",