---@type MappingsTable local M = {} M.general = { n = { [";"] = { ":", "enter command mode", opts = { nowait = true } }, ["gr"] = { " Gitsigns reset_hunk ", "Reset hunk" }, ["gp"] = { " Gitsigns preview_hunk ", "See preview hunk" }, ["gd"] = { " Gitsigns diffthis ", "See diff" }, ["gco"] = { " GitConflictChooseOurs ", "Git conflict ours" }, ["gct"] = { " GitConflictChooseTheirs ", "Git conflict theirs" }, ["gcb"] = { " GitConflictChooseBoth ", "Git conflict both" }, ["gc0"] = { " GitConflictChooseNone ", "Git conflict none" }, ["gcp"] = { " GitConflictPrevConflict ", "Git conflict preview conflict" }, ["gcn"] = { " GitConflictNextConflict ", "Git conflict next conflict" }; }, } -- more keybinds! return M