dots/home/private_dot_config/nvim/lua/custom/mappings.lua
2024-12-14 14:46:38 +08:00

12 lines
164 B
Lua

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