From 2f4e6ff510e9c57351f773ea19b576f1dbc0aaea Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Wed, 3 May 2023 16:41:41 -0500 Subject: [PATCH] refactor(wezterm): improve font handling and fallbacks --- dots/.config/wezterm/config/fonts.lua | 1 + dots/.config/wezterm/config/os/linux.lua | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/dots/.config/wezterm/config/fonts.lua b/dots/.config/wezterm/config/fonts.lua index 6e886410..9f103bef 100644 --- a/dots/.config/wezterm/config/fonts.lua +++ b/dots/.config/wezterm/config/fonts.lua @@ -27,6 +27,7 @@ return { -- NOTE: Attempt to resolve missing symbols etc. -- , BuiltIn { family = "Symbols Nerd Font Mono", scale = 0.8 }, + { family = "Symbols Nerd Font", scale = 0.8 }, "Noto Sans Symbols", "Noto Sans Symbols2", "PowerlineExtraSymbols", diff --git a/dots/.config/wezterm/config/os/linux.lua b/dots/.config/wezterm/config/os/linux.lua index a5647075..dce224fc 100644 --- a/dots/.config/wezterm/config/os/linux.lua +++ b/dots/.config/wezterm/config/os/linux.lua @@ -1 +1,3 @@ -return {} +return { + font_locator = nil +}