kickstart.nvim/lua/custom/plugins/undotree.lua

8 lines
117 B
Lua
Raw Normal View History

2024-05-19 23:59:17 +03:00
return {
"mbbill/undotree",
config = function()
vim.keymap.set("n", "<leader>u", vim.cmd.UndotreeToggle)
end
}