From ad3afc006441e2ca06d477eb1f3eed09f0f996e2 Mon Sep 17 00:00:00 2001 From: Janis Hutz Date: Thu, 27 Mar 2025 11:34:16 +0100 Subject: [PATCH] [Telescope] Add telescope notifications --- nvim/lua/plugins/nav/telescope.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nvim/lua/plugins/nav/telescope.lua b/nvim/lua/plugins/nav/telescope.lua index 0abb1bc..fecc175 100755 --- a/nvim/lua/plugins/nav/telescope.lua +++ b/nvim/lua/plugins/nav/telescope.lua @@ -57,6 +57,10 @@ return { opts.desc = "Show diagnostics" vim.keymap.set('n', 'fd', ':Telescope diagnostics', opts) + -- Notifications + opts.desc = "Show notifications" + vim.keymap.set('n', 'fd', ':Telescope notify', opts) + -- Implementations opts.desc = "Show implementations" vim.keymap.set('n', 'fi', ':Telescope lsp_implementations', opts)