local wk = require("which-key") local mappings = { q = {":q", "Quit"}, Z = {":wq", "Save and Quit"}, w = {":w", "Save"}, x ={":bdelete", "Close"}, f = { ":Telescope find_files", "Telescope Find Files" }, h = { ":Telescope find_files hidden=true", "Telescope Find Files" }, g = { ":Telescope live_grep", "Telescope Live Grep" }, r = { ":Telescope oldfiles", "Recent files" } } local opts = {prefix = ''} wk.register(mappings, opts)