Added which-key plugin

This commit is contained in:
2026-01-10 23:46:05 -05:00
parent 0f09293a06
commit d0b213f5f1

18
lua/plugins/which-key.lua Normal file
View File

@@ -0,0 +1,18 @@
return {
"folke/which-key.nvim",
event = "VeryLazy",
opts = {
-- your configuration comes here
-- or leave it empty to use the default settings
-- refer to the configuration section below
},
keys = {
{
"<leader>?",
function()
require("which-key").show({ global = false })
end,
desc = "Buffer Local Keymaps (which-key)",
},
},
}