switched to a submodule

This commit is contained in:
kalmenn 2023-12-18 09:11:00 +01:00
commit fdf977246d
Signed by: kalmenn
GPG key ID: DFF253360BF8471F
14 changed files with 276 additions and 0 deletions

12
lua/plugins/undotree.lua Normal file
View file

@ -0,0 +1,12 @@
return {
"mbbill/undotree",
keys = {
{
"<A-u>",
function()
vim.cmd.UndotreeToggle();
vim.cmd.UndotreeFocus();
end
},
},
}