---@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" }, }, i = { [""] = { function() vim.fn.feedkeys(vim.fn["copilot#Accept"](), "") end, "Copilot Accept", { replace_keycodes = true, nowait = true, silent = true, expr = true, noremap = true }, }, }, } -- more keybinds! return M