Files
neovim/lua/plugins/whichkey.lua
2025-11-04 12:12:00 +01:00

15 lines
250 B
Lua

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