nvim: Move undotree to pickers plugins

This commit is contained in:
Marty Oehme 2024-08-15 18:37:37 +02:00
parent 56951911f6
commit ff7adb859b
Signed by: Marty
GPG key ID: EDBF2ED917B2EF6A
2 changed files with 17 additions and 17 deletions

View file

@ -178,4 +178,21 @@ return {
}, },
}, },
}, },
{
"jiaoshijie/undotree",
dependencies = {
"nvim-lua/plenary.nvim",
},
config = true,
keys = {
{
"<leader>su",
function()
require("undotree").toggle()
end,
desc = "toggle undotree",
silent = true,
},
},
},
} }

View file

@ -179,21 +179,4 @@ return {
opts = {}, opts = {},
event = "VeryLazy", event = "VeryLazy",
}, },
{
"jiaoshijie/undotree",
dependencies = {
"nvim-lua/plenary.nvim",
},
config = true,
keys = {
{
"<leader>su",
function()
require("undotree").toggle()
end,
desc = "toggle undotree",
silent = true,
},
},
},
} }