nvim/lua/custom/mappings.lua

16 lines
209 B
Lua

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