1
0
Fork 0
forked from autowolf/nix
This commit is contained in:
autowolf 2026-02-22 19:59:14 -06:00
commit 252814b193
20 changed files with 1531 additions and 0 deletions

View file

@ -0,0 +1,15 @@
return {
{
"fyler.nvim",
cmd = { "Fyler" },
keys = {
{ "<leader>tf", function() return require('fyler').toggle({ kind = "split_right" }) end, mode = {"n"}, desc = 'Open [F]yler' },
},
load = function (name)
vim.cmd.packadd(name)
end,
after = function(plugin)
local fyler = require("fyler").setup()
end,
},
}