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

7 lines
122 B
Lua
Raw Normal View History

return {
'mbbill/undotree',
config = function()
vim.keymap.set('n', '<leader>u', vim.cmd.UndotreeToggle)
end,
}