--- @type LazyPluginSpec return { "folke/which-key.nvim", init = function() vim.o.timeout = true vim.o.timeoutlen = 300 end, config = function() local whichkey = require("which-key") whichkey.setup({ key_labels = { [""] = "SPC", [""] = "SPC", [""] = "RET", [""] = "RET", [""] = "TAB", }, icons = { breadcrumb = "»", separator = "➜", group = "", }, }) whichkey.register({ [""] = { w = { name = "window", }, f = { name = "find", }, b = { name = "buffer", }, g = { name = "git", }, l = { name = "lazy", }, t = { name = "toggle", }, p = { name = "project", }, h = { name = "highlights", }, }, }) end, }