mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-22 08:53:33 +02:00
21 lines
432 B
Lua
21 lines
432 B
Lua
return {
|
|
"echasnovski/mini.files",
|
|
opts = {
|
|
windows = {
|
|
preview = true,
|
|
},
|
|
options = {
|
|
-- Whether to use for editing directories
|
|
-- Disabled by default in LazyVim because neo-tree is used for that
|
|
use_as_default_explorer = false,
|
|
},
|
|
},
|
|
keys = {
|
|
{
|
|
"<leader>fm",
|
|
function()
|
|
require("mini.files").open(vim.api.nvim_buf_get_name(0), true)
|
|
end,
|
|
},
|
|
},
|
|
}
|