configuration.nix/cfg/nvim/custom/mappings.lua

13 lines
164 B
Lua
Raw Normal View History

2023-07-02 17:50:25 +02:00
---@type MappingsTable
local M = {}
M.general = {
n = {
[";"] = { ":", "enter command mode", opts = { nowait = true } },
},
}
-- more keybinds!
return M