AutoYADM commit: 2024-12-13 16:15:01

This commit is contained in:
Daniel Fichtinger 2024-12-13 16:15:01 -05:00
parent 0889491f30
commit 486f694fbd
3 changed files with 21 additions and 4 deletions

View file

@ -0,0 +1,12 @@
local M = {}
M.config = {
special = "",
remap = "<C-Cr>",
}
M.setup = function(opts)
M.config = vim.tbl_extend("force", M.config, opts)
end
return M