From 973f335277b38548092615a703955e0a7973824a Mon Sep 17 00:00:00 2001 From: Anthony Cicchetti Date: Fri, 19 Jun 2020 14:05:44 -0400 Subject: [PATCH] Fixup wezterm.lua --- wezterm/wezterm.lua | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/wezterm/wezterm.lua b/wezterm/wezterm.lua index cc2094c..e63be7f 100644 --- a/wezterm/wezterm.lua +++ b/wezterm/wezterm.lua @@ -1,17 +1,19 @@ local wezterm = require 'wezterm'; function font_with_fallback(name, params) - local names = {name, "Noto Color Emoji", "JetBrains Mono"} + local names = {name, "Iosevka Custom", "Noto Color Emoji", "JetBrains Mono"} return wezterm.font_with_fallback(names,params) end return { -- font stuff - font = font_with_fallback("Iosevka Custom Light"), + -- font = font_with_fallback("Iosevka Custom"), + font = font_with_fallback("Iosevka Custom"), + font_shaper = "Allsorts", font_rules = { { italic = true, - font = font_with_fallback("Dank Mono Italic"), + font = font_with_fallback("Dank Mono", {italic=true}), }, }, font_size = 14.0,