From 7e6f12dac97e1bde213ee043f205b911793c443a Mon Sep 17 00:00:00 2001 From: Alexander Wainwright Date: Tue, 16 Dec 2025 12:57:35 +1000 Subject: [PATCH] Update some font stuff --- alex/wezterm.lua | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/alex/wezterm.lua b/alex/wezterm.lua index 53c6ecc..e696723 100644 --- a/alex/wezterm.lua +++ b/alex/wezterm.lua @@ -18,7 +18,14 @@ config.window_frame = { config.font_size = 9.5 config.hide_tab_bar_if_only_one_tab = true -config.font = wezterm.font 'Fira Code' -config.font = wezterm.font 'Lilex Nerd Font' +-- config.font = wezterm.font 'Fira Code' +-- config.font = wezterm.font 'Lilex Nerd Font' + +config.font = wezterm.font_with_fallback { + 'Fira Code', -- Replace with your preferred main font + 'Noto Sans Symbols 2', -- Great for arrows like \u{1f898} + 'Noto Sans', + 'Symbols Nerd Font Mono', +} return config