rename build/ -> template

This commit is contained in:
Michael Chris Lopez
2021-09-21 20:55:53 +08:00
parent 77a82cefca
commit 922eb2de63
23 changed files with 43 additions and 51 deletions

View File

@@ -7,4 +7,23 @@ function M.interp(s, tab)
end))
end
function M.bg_to_base_name()
return vim.opt.background:get() == "light" and "zenbones" or "zenflesh"
end
local function write_template(path, template, values)
print("[write template] " .. path)
local content = M.interp(template, values)
local file = io.open(path, "w")
file:write(content)
file:close()
end
function M.build(name, specs, palette, terminal)
local templates = { "vim", "kitty", "alacritty", "wezterm", "lualine", "lightline", "tmux" }
for _, t in ipairs(templates) do
write_template(unpack(require("zenbones.template." .. t)(name, specs, palette, terminal)))
end
end
return M