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

7 lines
122 B
Lua
Raw Normal View History

2024-02-27 03:07:22 +01:00
return {
'mbbill/undotree',
config = function()
vim.keymap.set('n', '<leader>u', vim.cmd.UndotreeToggle)
end,
}