diff --git a/lua/lazyvim/plugins/editor.lua b/lua/lazyvim/plugins/editor.lua index 256573b1..091b6ceb 100644 --- a/lua/lazyvim/plugins/editor.lua +++ b/lua/lazyvim/plugins/editor.lua @@ -122,6 +122,8 @@ return { ["f"] = { name = "+file" }, ["g"] = { name = "+git" }, ["h"] = { name = "+help" }, + ["n"] = { name = "+noice" }, + ["s"] = { name = "+search" }, ["x"] = { name = "+diagnostics" }, }) end, diff --git a/lua/lazyvim/plugins/ui.lua b/lua/lazyvim/plugins/ui.lua index fdbefdcb..8d69ac3c 100644 --- a/lua/lazyvim/plugins/ui.lua +++ b/lua/lazyvim/plugins/ui.lua @@ -4,11 +4,11 @@ return { "rcarriga/nvim-notify", keys = { { - "nc", + "nd", function() require("notify").dismiss({ silent = true, pending = true }) end, - desc = "Clear all Notifications", + desc = "Delete all Notifications", }, }, config = {