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', '<leader>fd', ':Telescope diagnostics<CR>', opts)
 
+        -- Notifications
+        opts.desc = "Show notifications"
+        vim.keymap.set('n', '<leader>fd', ':Telescope notify<CR>', opts)
+
         -- Implementations
         opts.desc = "Show implementations"
         vim.keymap.set('n', '<leader>fi', ':Telescope lsp_implementations<CR>', opts)