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" }, g = { ":Telescope live_grep", "Telescope Live Grep" } } local opts = {prefix = ''} wk.register(mappings, opts)