Initial commit

This commit is contained in:
Folkert Kevelam 2024-10-08 22:13:41 +02:00
parent f7aa2cbdc0
commit 9177e5af3b

25
lua/SpecSwitcher/init.lua Normal file
View File

@ -0,0 +1,25 @@
local M = {}
local Config = {
test = "hallo"
}
function open(filename)
vim.cmd("e " .. filename)
end
function M.setup(opts)
opts = opts or {}
for k,v in pairs(opts) do
Config[k] = v
end
local mapping = require("ExtensionMap"):new()
mapping:add("c", {"h", "H", "hh", "HH"})
mapping:print()
end
return M