-
|
As the title says, the bold and italic text is wezterm is not being displayed as expected:
I'm not submitting an issue since I'm pretty sure that the bold-text issue is due to some miss-configuration on my part and that the italic-text one is due to the text being "italized" twice, as described in #3555. Here is mi configuration: local wezterm = require "wezterm";
return {
enable_tab_bar = false,
font = wezterm.font("Fira Code Retina"),
font_size = 13.0,
color_scheme = "nord"
}And here is the output of |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
|
You're telling wezterm to use only the Fix it like this: font = wezterm.font('Fira Code') |
Beta Was this translation helpful? Give feedback.




You're telling wezterm to use only the
Fira Code Retinafont weight, rather than use the whole font family, so none of the other font weights are matched and used.Fix it like this: