Skip to content

Commit

Permalink
chore(wezterm): update font weight
Browse files Browse the repository at this point in the history
  • Loading branch information
fisenkodv committed Sep 6, 2024
1 parent 27ea8d1 commit 4af58a0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion config/wezterm/cfg_appearance.lua
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ function M.setup(cfg)

cfg.font = wezterm.font({
family = fontFamily,
weight = "DemiBold",
harfbuzz_features = {
"calt=0",
"clig=0",
Expand All @@ -32,7 +33,7 @@ function M.setup(cfg)
cfg.font_rules = {
{
intensity = "Bold",
font = wezterm.font({ family = fontFamily, weight = "Bold" }),
font = wezterm.font({ family = fontFamily, weight = "DemiBold" }),
},
}

Expand Down

0 comments on commit 4af58a0

Please sign in to comment.