mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-22 00:49:03 +02:00
22 lines
432 B
Lua
22 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,
|
||
|
},
|
||
|
},
|
||
|
}
|