mirror of https://github.com/LazyVim/starter
13 lines
279 B
Lua
13 lines
279 B
Lua
|
return {
|
||
|
"jiaoshijie/undotree",
|
||
|
dependencies = "nvim-lua/plenary.nvim",
|
||
|
config = true,
|
||
|
keys = { -- load the plugin only when using it's keybinding:
|
||
|
{
|
||
|
"<leader>uu",
|
||
|
"<cmd>lua require('undotree').toggle()<cr>",
|
||
|
desc = "Toggle UndoTree",
|
||
|
},
|
||
|
},
|
||
|
}
|