dotfiles/configfile/nvim/lua/custom/mappings.lua
2023-03-15 13:08:30 +01:00

13 lines
164 B
Lua

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