replace nvim submodule with real files

This commit is contained in:
2025-05-03 22:27:42 -07:00
parent 3b012fc9da
commit 9d6b636420
71 changed files with 3980 additions and 4 deletions

View File

@@ -0,0 +1,12 @@
local M = {}
local map = vim.keymap.set
local opts = { noremap = true, silent = true }
function M.set_keybindings(bindings)
for _, binding in ipairs(bindings) do
map(binding.mode, binding.key, binding.cmd, binding.opts or opts)
end
return bindings
end
return M