wezterm: disable freetype hinting explicitly
This commit is contained in:
parent
b623929170
commit
9f9262ccbe
1 changed files with 5 additions and 2 deletions
|
@ -103,7 +103,7 @@ local function font_for_appearance(appearance)
|
||||||
else
|
else
|
||||||
return wezterm.font({
|
return wezterm.font({
|
||||||
family = "IosevkaShelman Nerd Font",
|
family = "IosevkaShelman Nerd Font",
|
||||||
--weight = "Regular",
|
-- weight = "Regular",
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -129,11 +129,14 @@ config.font_rules = {
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
-- config.dpi = 192
|
-- config.dpi = 192
|
||||||
config.font_size = 15
|
config.dpi = 144
|
||||||
|
config.font_size = 14
|
||||||
config.line_height = 1.0
|
config.line_height = 1.0
|
||||||
config.warn_about_missing_glyphs = false
|
config.warn_about_missing_glyphs = false
|
||||||
config.bold_brightens_ansi_colors = false
|
config.bold_brightens_ansi_colors = false
|
||||||
config.unicode_version = 14
|
config.unicode_version = 14
|
||||||
|
config.freetype_load_flags = "NO_HINTING"
|
||||||
|
config.freetype_load_target = "HorizontalLcd"
|
||||||
|
|
||||||
-- Config
|
-- Config
|
||||||
config.enable_wayland = true
|
config.enable_wayland = true
|
||||||
|
|
Loading…
Reference in a new issue