Files
nvim_dotfiles/lua/plugins/whichkey.lua
2025-06-24 18:12:40 +02:00

21 lines
417 B
Lua

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