---@type MappingsTable local M = {} M.general = { n = { [";"] = { ":", "enter command mode", opts = { nowait = true } }, -- format with conform ["fm"] = { function() require("conform").format() end, "formatting", }, ["tt"] = { function() require("base46").toggle_transparency() end, "toggle transparency" }, ["te"] = { function() require("base46").toggle_theme() end, "toggle theme" }, ["[t"] = { ":tabprevious", "previous tab" }, ["]t"] = { ":tabnext", "next tab" }, ["lg"] = { function() require("custom.terminals.lazygit").toggle() end, "Lazy Git" }, ["k9"] = { function() require("custom.terminals.k9s").toggle() end, "K9S" }, }, v = { [">"] = { ">gv", "indent"}, }, } -- more keybinds! return M