return { { 'folke/which-key.nvim', event = 'VimEnter', opts = { preset = 'helix', delay = 1000, }, config = function(_, opts) require('which-key').setup(opts) -- Document existing key chains require('which-key').add { { "c", group = "[C]ode/Color" }, { "d", group = "[D]ocument" }, { "g", group = "[G]it" }, { "r", group = "[R]ename" }, { "s", group = "[S]earch" }, { "w", group = "[W]orkspace" }, } end, }, }