--[ -- Show a helpful remainder when you start typing a short key. -- -- After some time of hesitation, « which-key » will show all the available mapping and describe them. --] return { "folke/which-key.nvim", enabled = true, event = "VeryLazy", init = function() vim.opt.timeout = true vim.opt.timeoutlen = 500 end, opts = {}, -- Use default configuration. keys = { { "?", function() require("which-key").show({ global = true, loop = true }) end, desc = "Buffer Local Keymaps (which-key)", }, }, }