/ nvim / .config / nvim / lua / plugins / which-key.lua
which-key.lua
 1  return {
 2  	"folke/which-key.nvim",
 3  	event = "VeryLazy",
 4  	opts = {},
 5  	keys = {
 6  		{
 7  			"<leader>?",
 8  			function()
 9  				require("which-key").show({ global = false })
10  			end,
11  			desc = "Buffer Local Keymaps (which-key)",
12  		},
13  	},
14  }