neovim: add telescope-undo.nvim
This commit is contained in:
parent
dd1e18ae2a
commit
9441096f42
1 changed files with 19 additions and 0 deletions
|
@ -1,5 +1,24 @@
|
|||
---@type LazySpec
|
||||
return {
|
||||
{
|
||||
"debugloop/telescope-undo.nvim",
|
||||
keys = {
|
||||
{
|
||||
"<leader>su",
|
||||
"<cmd>Telescope undo<cr>",
|
||||
desc = "Undo",
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
"nvim-telescope/telescope.nvim",
|
||||
optional = true,
|
||||
opts = function()
|
||||
LazyVim.on_load("telescope.nvim", function()
|
||||
require("telescope").load_extension("undo")
|
||||
end)
|
||||
end,
|
||||
},
|
||||
{
|
||||
"echasnovski/mini.surround",
|
||||
opts = {
|
||||
|
|
Loading…
Add table
Reference in a new issue