Some checks are pending
Check Lua Formatting in MyRepo / Stylua Check (push) Waiting to run
9 lines
230 B
Lua
Executable file
9 lines
230 B
Lua
Executable file
return {
|
|
'mbbill/undotree',
|
|
config = function()
|
|
-- Set Undotree to open on the right side
|
|
vim.g.undotree_WindowLayout = 4
|
|
|
|
vim.keymap.set('n', '<leader>u', vim.cmd.UndotreeToggle, { desc = '[U]ndotree' })
|
|
end,
|
|
}
|