1
0
Fork 0
nvimConfig/lua/truss/lazy/whichkey.lua

14 lines
274 B
Lua

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