-- https://github.com/folke/which-key.nvim return { "folke/which-key.nvim", event = "VeryLazy", init = function() vim.o.timeout = true vim.o.timeoutlen = 500 end, opts = { -- your configuration comes here -- or leave it empty to use the default settings -- refer to the configuration section below spec = { { "a", group = "[A]I" }, { "c", group = "[C]lear / [C]all" }, { "d", group = "[D]iagnostic" }, { "e", group = "File [E]xplorer" }, { "f", group = "[F]ind" }, { "g", group = "[G]it" }, { "h", group = "[H]istory" }, { "l", group = "[L]SP" }, { "p", group = "[P]anes" }, { "s", group = "[S]ession" }, { "t", group = "[T]abs" }, { "u", group = "[U]i" }, }, }, }