2026-02-12 18:53:24 +00:00
|
|
|
return {
|
2026-02-21 19:05:00 +00:00
|
|
|
{
|
|
|
|
|
"fyler.nvim",
|
|
|
|
|
cmd = { "Fyler" },
|
|
|
|
|
keys = {
|
|
|
|
|
{
|
2026-03-14 22:09:13 +00:00
|
|
|
"<leader>e",
|
2026-02-21 19:05:00 +00:00
|
|
|
function()
|
|
|
|
|
return require("fyler").toggle({ kind = "split_right" })
|
|
|
|
|
end,
|
|
|
|
|
mode = { "n" },
|
2026-03-14 22:09:13 +00:00
|
|
|
desc = "Open File [E]xplorer (Fyler)",
|
2026-02-21 19:05:00 +00:00
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
load = function(name)
|
|
|
|
|
vim.cmd.packadd(name)
|
|
|
|
|
end,
|
|
|
|
|
after = function(plugin)
|
|
|
|
|
local fyler = require("fyler").setup()
|
|
|
|
|
end,
|
|
|
|
|
},
|
2026-02-12 18:53:24 +00:00
|
|
|
}
|