Search notifications.

This commit is contained in:
Drew 2025-05-12 23:47:37 -07:00
parent 72ff506c30
commit 27c34ed642
4 changed files with 4 additions and 3 deletions

View file

@ -27,6 +27,7 @@ require("which-key").add({
{ "<leader>s", group = "search" },
{ "<leader>ss", Snacks.picker.lsp_workspace_symbols, name = "symbols" },
{ "<leader>sg", Snacks.picker.grep, name = "grep" },
{ "<leader>sn", Snacks.picker.notifications, name = "notifications" },
{ "<leader>u", group = "ui" },
{ "<leader>ut", Snacks.picker.colorschemes, name = "colorschemes" },

View file

@ -12,6 +12,7 @@ return {
}
},
explorer = {},
notifier = {},
toggle = {},
},
}

View file

@ -41,12 +41,12 @@ return {
-- OPTIONAL:
-- `nvim-notify` is only needed, if you want to use the notification view.
-- If not available, we use `mini` as the fallback
"rcarriga/nvim-notify",
-- "rcarriga/nvim-notify",
},
opts = {
-- you can enable a preset for easier configuration
presets = {
bottom_search = true, -- use a classic bottom cmdline for search
bottom_search = true, -- use a classic bottom cmdline for search
command_palette = true, -- position the cmdline and popupmenu together
},
},