This commit is contained in:
2025-08-10 14:02:33 +02:00
parent 36f51bb73c
commit bc65b628dd
13 changed files with 246 additions and 94 deletions

View File

@@ -0,0 +1,17 @@
-- Keymapping helper module
--
local M = {}
local function map(mode, key, func, opts)
vim.keymap.set(mode, key, func, opts)
end
function M.nmap(key, effect, desc)
map('n', key, effect, { silent = true, noremap = true, desc = desc })
end
return M
-- The line beneath this is called `modeline`. See `:help modeline`
-- vim: ts=2 sts=2 sw=2 et