config/nvim/.config/nvim/lua/plugins/which-key.lua
2025-10-31 01:08:15 +10:00

14 lines
401 B
Lua

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