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