nvim-macos/lua/plugins/which-key.lua

15 lines
226 B
Lua
Raw Permalink Normal View History

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