return { "folke/which-key.nvim", event = "VeryLazy", init = function() vim.o.timeout = true vim.o.timeoutlen = 0 end, config = function() require("which-key").register({ [""] = { ":write", "Persist the content of the current buffer to the file system" }, [""] = { ":quitall", "Quit the editor with confirmation" }, [""] = { "h", "Move to the window on the left" }, [""] = { "l", "Move to the window on the right" }, [""] = { "k", "Move to the window on the top" }, [""] = { "j", "Move to the window on the bottom" } }) end }