From 360d42bab1e4594d4c53dab34d1387899434dcc8 Mon Sep 17 00:00:00 2001 From: TheSast <27977196+TheSast@users.noreply.github.com> Date: Tue, 11 Jul 2023 18:34:25 +0000 Subject: [PATCH] feat(telescope-undo-nvim): add `fu` keybind (#408) chore(telescope-undo-nvim): add keybind --- .../editing-support/telescope-undo-nvim/init.lua | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/lua/astrocommunity/editing-support/telescope-undo-nvim/init.lua b/lua/astrocommunity/editing-support/telescope-undo-nvim/init.lua index 0966212ee..d91e7ea92 100644 --- a/lua/astrocommunity/editing-support/telescope-undo-nvim/init.lua +++ b/lua/astrocommunity/editing-support/telescope-undo-nvim/init.lua @@ -1,5 +1,12 @@ return { "nvim-telescope/telescope.nvim", dependencies = { "debugloop/telescope-undo.nvim" }, + keys = { + { + "fu", + "Telescope undo", + desc = "Find undos", + }, + }, opts = function() require("telescope").load_extension "undo" end, }