From c88dcb4bd94558f5f80a206de4b6317f32dad38c Mon Sep 17 00:00:00 2001 From: Amanda Graven Date: Sun, 29 Jan 2023 13:05:33 +0100 Subject: [PATCH] Add telescope-undo --- init.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/init.lua b/init.lua index a49c56a..e7e0373 100644 --- a/init.lua +++ b/init.lua @@ -502,6 +502,7 @@ require'packer'.startup(function(use) n = {'Telescope notify', 'Notifications'}, m = {'Telescope man_pages', 'Man pages'}, [':'] = {'Telescope commands', 'Commands'}, + u = {'Telescope undo', 'Undo'}, } } end} @@ -520,6 +521,9 @@ require'packer'.startup(function(use) use {'nvim-telescope/telescope-dap.nvim', after = 'telescope.nvim', config = function() require'telescope'.load_extension'dap' end} + use {'debugloop/telescope-undo.nvim', config = function() + require'telescope'.load_extension('undo') + end} use 'kyazdani42/nvim-tree.lua' use 'simrat39/symbols-outline.nvim' use {'folke/which-key.nvim', config = function() require'which-key'.setup() end}