From 9915fcd2bf3271c06f7f0b90502ee924d8965640 Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Sat, 8 Mar 2025 19:32:50 +0100 Subject: [PATCH] wezterm: Fix italic font display Accidentally displayed as italic and bold by default, now displaying regular weight except for actually bold italic fonts. --- terminal/.config/wezterm/wezterm.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terminal/.config/wezterm/wezterm.lua b/terminal/.config/wezterm/wezterm.lua index 2681191..8fa9cf3 100644 --- a/terminal/.config/wezterm/wezterm.lua +++ b/terminal/.config/wezterm/wezterm.lua @@ -61,7 +61,7 @@ local settings = { italic = true, intensity = "Normal", font = wezterm.font_with_fallback({ - { family = "Iosevka", weight = "Bold", italic = true }, + { family = "Iosevka", weight = "Regular", italic = true }, { family = "VictorMono Nerd Font", style = "Italic" }, }), },