dotfiles/nvim/lua/plugins/which-key.lua
2025-05-07 00:25:07 +02:00

15 lines
224 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)",
},
},
}