Added which-key

This commit is contained in:
2025-01-31 14:08:03 +11:00
parent 3493b0c0fc
commit 1fbef8a1ee
2 changed files with 21 additions and 6 deletions

View File

@@ -0,0 +1,14 @@
return {
"folke/which-key.nvim",
event = "VeryLazy",
opts = {},
keys = {
{
"<leader>?",
function()
require("which-key").show({ global = false })
end,
desc = "Buffer Local Keymaps (which-key)",
},
},
}