Test of neovim plugins
See :help Testy.nvim
A plugin for easily adding and then removing sets of mappings without losing what maps you had before.
Testy.nvim supports lazy and packer
lazy.nvim
{
"Jafagervik/Testy.nvim",
config = function()
local testy = require("Testy")
vim.keymap.set({ "n", "v" }, "<leader>fml", function()
testy.show()
end, { desc = "show" })
vim.keymap.set({ "n", "v" }, "<leader>kek", function()
testy.test()
end, { desc = "test" })
end,
}