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