1
0
forked from extern/zaneyos

fix fallback font for wezterm

This commit is contained in:
Tyler Kelley 2024-02-24 13:28:26 -06:00
parent f47f69a6fd
commit 561b1bf9a8
4 changed files with 14 additions and 0 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -89,6 +89,20 @@ in lib.mkIf (wezterm == true) {
quick_select_match_fg = { Color = '#ffffff' },
}
wezterm.font_with_fallback({
-- /.local/share/fonts/JetBrainsMono.ttf, FontConfig
"JetBrains Mono",
-- /.local/share/fonts/Symbols-Regular.ttf, FontConfig
"Symbols Nerd Font Mono",
-- /.local/share/fonts/NotoColorEmoji.ttf, FontConfig
-- Assumed to have Emoji Presentation
-- Pixel sizes: [128]
"Noto Color Emoji",
})
-- and finally, return the configuration to wezterm
return config
'';