wezterm: fonts
This commit is contained in:
parent
e7fce6aa85
commit
f08ac53219
1 changed files with 42 additions and 3 deletions
|
@ -22,31 +22,70 @@ return {
|
||||||
{
|
{
|
||||||
italic = false,
|
italic = false,
|
||||||
intensity = "Half",
|
intensity = "Half",
|
||||||
|
reverse = false,
|
||||||
font = font_with_fallback("Iosevka Term SS09", { weight = "Thin" }),
|
font = font_with_fallback("Iosevka Term SS09", { weight = "Thin" }),
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
italic = false,
|
||||||
|
intensity = "Bold",
|
||||||
|
reverse = false,
|
||||||
|
font = font_with_fallback("Iosevka Term SS09", { weight = "DemiBold" }),
|
||||||
|
},
|
||||||
{
|
{
|
||||||
italic = true,
|
italic = true,
|
||||||
intensity = "Normal",
|
intensity = "Normal",
|
||||||
|
reverse = false,
|
||||||
font = font_with_fallback("Iosevka Term Curly Slab", { weight = "Light", italic = true }),
|
font = font_with_fallback("Iosevka Term Curly Slab", { weight = "Light", italic = true }),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
italic = true,
|
italic = true,
|
||||||
intensity = "Half",
|
intensity = "Half",
|
||||||
|
reverse = false,
|
||||||
font = font_with_fallback("Iosevka Term SS15", { weight = "ExtraLight", italic = true }),
|
font = font_with_fallback("Iosevka Term SS15", { weight = "ExtraLight", italic = true }),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
italic = true,
|
italic = true,
|
||||||
intensity = "Bold",
|
intensity = "Bold",
|
||||||
|
reverse = false,
|
||||||
font = font_with_fallback("Iosevka Term Curly Slab Ex", { weight = "Regular", italic = true }),
|
font = font_with_fallback("Iosevka Term Curly Slab Ex", { weight = "Regular", italic = true }),
|
||||||
},
|
},
|
||||||
|
|
||||||
|
-- Reversed
|
||||||
|
{
|
||||||
|
reverse = true,
|
||||||
|
italic = false,
|
||||||
|
intensity = "Normal",
|
||||||
|
font = font_with_fallback("Iosevka Term SS09", { weight = "Regular" }),
|
||||||
|
},
|
||||||
{
|
{
|
||||||
reverse = true,
|
reverse = true,
|
||||||
intensity = "Bold",
|
italic = false,
|
||||||
font = font_with_fallback("Iosevka Term SS09", { weight = "Bold" }),
|
intensity = "Half",
|
||||||
|
font = font_with_fallback("Iosevka Term SS09", { weight = "Light" }),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
reverse = true,
|
||||||
|
italic = true,
|
||||||
|
intensity = "Half",
|
||||||
|
font = font_with_fallback("Iosevka Term Curly Slab", { weight = "ExtraLight", italic = true }),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
reverse = true,
|
||||||
|
italic = true,
|
||||||
|
intensity = "Normal",
|
||||||
|
font = font_with_fallback("Iosevka Term Curly Slab", { weight = "Light", italic = true }),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
reverse = true,
|
||||||
|
italic = true,
|
||||||
intensity = "Bold",
|
intensity = "Bold",
|
||||||
font = font_with_fallback("Iosevka Term SS09", { weight = "DemiBold" }),
|
font = font_with_fallback("Iosevka Term Curly Slab Ex", { weight = "Bold", italic = true }),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
reverse = true,
|
||||||
|
italic = false,
|
||||||
|
intensity = "Bold",
|
||||||
|
font = font_with_fallback("Iosevka Term SS09", { weight = "Bold" }),
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
front_end = "WebGpu",
|
front_end = "WebGpu",
|
||||||
|
|
Loading…
Reference in a new issue