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

7 lines
119 B
Lua
Raw Normal View History

2023-05-23 16:37:59 +02:00
return {
'mbbill/undotree',
config =function ()
vim.keymap.set("n", "<leader>u", "<CMD>UndotreeToggle<CR>")
end
}