---@type MappingsTable local M = {} M.general = { n = { [";"] = { ":", "enter command mode", opts = { nowait = true } }, -- format with conform ["fm"] = { function() require("conform").format() end, "formatting", }, }, v = { [">"] = { ">gv", "indent" }, }, s = { -- Move up and down when selected ["J"] = { ":m '>+1gv=gv" }, ["K"] = { ":m '<-2gv=gv" }, }, } -- more keybinds! return M