nvim/lua/plugins/which-key.lua
2025-10-22 22:19:33 -04:00

18 lines
No EOL
346 B
Lua

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