---@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"}, }, } M.lsp = { n = { ["ts"] = {":Telescope lsp_document_symbols", "Find symbols in document"} } } M.neogit = { n = { ["gs"] = {":Neogit", "Open Neogit"} } } return M