config.nvim/lua/custom/plugins/undotree.lua

7 lines
122 B
Lua
Raw Permalink Normal View History

2024-11-11 22:17:41 -05:00
return {
"mbbill/undotree",
config = function()
vim.keymap.set("n", "<leader>u", vim.cmd.UndotreeToggle)
end,
}