feat(wezterm): Add WezTerm Metadata Entry (#327)

This commit is contained in:
Thomas Croft 2023-03-05 23:38:24 -07:00 committed by GitHub
parent a0d5034fd6
commit 43c5b2ac4d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,7 +4,7 @@ local M = {}
--- @param colors ColorScheme
function M.generate(colors)
local kitty = util.template(
local wezterm = util.template(
[[
[colors]
foreground = "${fg}"
@ -41,10 +41,14 @@ bg_color = "${blue}"
[colors.tab_bar.new_tab]
fg_color = "${blue}"
bg_color = "#191b28"
]],
[metadata]
aliases = []
author = "folke"
name = "${_style_name}"]],
colors
)
return kitty
return wezterm
end
return M