nvim/lua/custom/mappings.lua

16 lines
218 B
Lua

---@type MappingsTable
local M = {}
M.general = {
-- n = {
-- [";"] = { ":", "enter command mode", opts = { nowait = true } },
-- },
v = {
[">"] = { ">gv", "indent"},
},
}
-- more keybinds!
return M