return { "folke/which-key.nvim", event = "VeryLazy", config = function() require("which-key").setup({ preset = "helix", delay = 300, icons = { rules = false, breadcrumb = " ", separator = "󱦰 ", group = "󰹍 ", }, plugins = { spelling = { enabled = false, }, }, win = { height = { max = math.huge, }, }, spec = { { mode = { "n", "v" }, { "b", group = "buffer" }, { "c", group = "code" }, { "f", group = "find" }, { "h", group = "history" }, { "u", group = "ui" }, }, }, }) end, }