Fixup wezterm.lua

This commit is contained in:
Anthony Cicchetti 2020-06-19 14:05:44 -04:00
parent a2e9abbb76
commit 973f335277

View file

@ -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,