dotfiles/tools/nvim/lua/plugins/mod/which-keys-nvim.lua
2025-03-02 13:28:19 +00:00

16 lines
277 B
Lua

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