nvim/lua/plugins/undotree.lua

7 lines
147 B
Lua
Raw Normal View History

2024-07-30 10:06:43 -07:00
return {
'mbbill/undotree',
config=function()
vim.keymap.set('n', '<C-u>', ':Neotree close<CR>:UndotreeToggle<CR>', {})
end,
}