---@type MappingsTable local M = {} M.general = { n = { [""] = { function() require("nvterm.terminal").toggle "vertical" end, }, [""] = { function() require("nvterm.terminal").toggle "horizontal" end, }, ["\\"] = { ":vsplit ", "Vertical split" }, -- format with conform ["fm"] = { function() require("conform").format() end, "formatting", } }, v = { [">"] = { ">gv", "indent"}, }, t = { [""] = { function() require("nvterm.terminal").toggle "vertical" end, }, [""] = { function() require("nvterm.terminal").toggle "horizontal" end, }, }, } -- more keybinds! return M