nvim: Add undotree plugin

Lua implementation of the undo tree plugin, mapped to be
reachable with <leader>su (for show undo).
This commit is contained in:
Marty Oehme 2023-06-17 21:58:04 +02:00
parent f33b4c9c37
commit b9de8b3914
Signed by: Marty
GPG key ID: EDBF2ED917B2EF6A
3 changed files with 15 additions and 0 deletions

View file

@ -50,4 +50,11 @@ return {
end,
event = "VeryLazy",
},
{
"jiaoshijie/undotree",
dependencies = {
"nvim-lua/plenary.nvim",
},
config = true, event = "VeryLazy",
},
}