Files
dotfiles/.config/nvim/lua/custom/mappings.lua
Antoine Phan ee90d9cc27 More!
2024-01-17 23:33:14 -05:00

13 lines
164 B
Lua

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