-- Display possible keybinds -- Plugin specific keybinds are set up in plugin configuration file return { "folke/which-key.nvim", config = function() local wk = require("which-key") wk.setup({}) wk.register({ h = { "nohlsearch", "Turn off search highlight" }, }, { prefix = "" }) wk.register({ [""] = { "bnext", "Next buffer" }, [""] = { "bprevious", "Previous buffer" }, }) -- Exit terminal insert mode with esc vim.keymap.set("t", "", "", {}) end, }