build core, basic and go variants and add template

This commit is contained in:
Dietrich Rink
2023-06-01 00:54:51 +02:00
parent 76e695ebbb
commit dd67e62569
31 changed files with 800 additions and 2 deletions

9
basic/nvim/lua/pack.lua Normal file
View File

@@ -0,0 +1,9 @@
local conf_path = 'plugconf/%s.lua'
function pack(name)
vim.cmd('packadd! ' .. name)
name = name:gsub('^n?vim%-', ''):gsub('%..*$', '')
vim.cmd.runtime(conf_path:format(name))
end
return pack