neovim/lua/custom/mappings.lua
2023-06-05 01:39:31 +02:00

13 lines
166 B
Lua

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