.dotfiles/home/.config/nvim/lua/plugs/undotree.lua

12 lines
280 B
Lua

return {
"mbbill/undotree",
event = "VeryLazy",
lazy = true,
config = function()
require("utils").add_keymaps({
n = {
["<leader>ud"] = { cmd = ":UndotreeToggle<CR>", opts = { silent = true } }
}
})
end
}