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