-- Create key bindings that stick. -- WhichKey helps you remember your Neovim keymaps, -- by showing available keybindings in a popup as you type. -- https://github.com/folke/which-key.nvim return { "which-key.nvim", event = "DeferredUIEnter", cmd = "WhichKey", after = function() require("which-key").setup({ delay = 0, -- HACK: Workaround for https://github.com/folke/which-key.nvim#967, might keep it anyway show_help = false, spec = { { "s", group = "Search" } }, preset = "helix", }) end, }