Auto commit: 2024-11-09 20:15:02
This commit is contained in:
parent
a9db76fabb
commit
0ce5f12fb7
1 changed files with 4 additions and 4 deletions
|
@ -1,6 +1,3 @@
|
||||||
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,
|
||||||
|
@ -29,7 +26,10 @@ return {
|
||||||
},
|
},
|
||||||
opts = {
|
opts = {
|
||||||
content = {
|
content = {
|
||||||
filter = filter_hide,
|
-- hide hidden files by default
|
||||||
|
filter = function(fs_entry)
|
||||||
|
return not vim.startswith(fs_entry.name, ".")
|
||||||
|
end,
|
||||||
},
|
},
|
||||||
mappings = {
|
mappings = {
|
||||||
go_in_plus = "<CR>",
|
go_in_plus = "<CR>",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue