diff --git a/config/home/files/fonts/JetBrainsMono.ttf b/config/home/files/fonts/JetBrainsMono.ttf new file mode 100644 index 0000000..31e03a2 Binary files /dev/null and b/config/home/files/fonts/JetBrainsMono.ttf differ diff --git a/config/home/files/fonts/NotoColorEmoji.ttf b/config/home/files/fonts/NotoColorEmoji.ttf new file mode 100644 index 0000000..cf7a47e Binary files /dev/null and b/config/home/files/fonts/NotoColorEmoji.ttf differ diff --git a/config/home/files/fonts/Symbols-Regular.ttf b/config/home/files/fonts/Symbols-Regular.ttf new file mode 100644 index 0000000..7ef73a9 Binary files /dev/null and b/config/home/files/fonts/Symbols-Regular.ttf differ diff --git a/config/home/wezterm.nix b/config/home/wezterm.nix index 3e47938..8ad8907 100644 --- a/config/home/wezterm.nix +++ b/config/home/wezterm.nix @@ -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 '';