nvim-configs/lua/plugin/which-key.lua

17 lines
229 B
Lua

local M = {
'folke/which-key.nvim',
event = 'VeryLazy',
config = true,
keys = {
{
'<leader>?',
function()
require 'which-key'.show({ global = false })
end,
desc = 'Buffer local mappings',
}
}
}
return M