wezterm: disable freetype hinting explicitly

This commit is contained in:
Daniel Lundin 2024-06-01 17:32:28 +02:00
parent b623929170
commit 9f9262ccbe
No known key found for this signature in database

View file

@ -103,7 +103,7 @@ local function font_for_appearance(appearance)
else
return wezterm.font({
family = "IosevkaShelman Nerd Font",
--weight = "Regular",
-- weight = "Regular",
})
end
end
@ -129,11 +129,14 @@ config.font_rules = {
},
}
-- config.dpi = 192
config.font_size = 15
config.dpi = 144
config.font_size = 14
config.line_height = 1.0
config.warn_about_missing_glyphs = false
config.bold_brightens_ansi_colors = false
config.unicode_version = 14
config.freetype_load_flags = "NO_HINTING"
config.freetype_load_target = "HorizontalLcd"
-- Config
config.enable_wayland = true