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

This commit is contained in:
Daniel Fichtinger 2024-11-09 20:15:02 -05:00
parent a9db76fabb
commit 0ce5f12fb7

View file

@ -1,6 +1,3 @@
local filter_hide = function(fs_entry)
return not vim.startswith(fs_entry.name, ".")
end
return {
"echasnovski/mini.files",
lazy = false,
@ -29,7 +26,10 @@ return {
},
opts = {
content = {
filter = filter_hide,
-- hide hidden files by default
filter = function(fs_entry)
return not vim.startswith(fs_entry.name, ".")
end,
},
mappings = {
go_in_plus = "<CR>",