From 0b14d0b9b02c6a1553be7ebdc73b072792351bcc Mon Sep 17 00:00:00 2001 From: Daniel Lundin Date: Sat, 15 Jun 2024 18:14:39 +0200 Subject: [PATCH] wezterm: more accurate font hinting+rendering --- .config/wezterm/wezterm.lua | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/.config/wezterm/wezterm.lua b/.config/wezterm/wezterm.lua index eee7cfc..8be9660 100644 --- a/.config/wezterm/wezterm.lua +++ b/.config/wezterm/wezterm.lua @@ -103,7 +103,7 @@ local function colors_for_appearance(appearance) else return { background = "#fefeff", - foreground = "#000000", + foreground = "#333333", cursor_bg = "#aa0000", cursor_fg = "#ffffff", cursor_border = "#ffffff", @@ -154,17 +154,12 @@ config.font_rules = { }, } -config.font_size = 14 +config.font_size = 15 -- config.font_size = 18 config.warn_about_missing_glyphs = false config.bold_brightens_ansi_colors = false config.unicode_version = 14 --- config.freetype_load_flags = "DEFAULT" --- --- config.front_end = "OpenGL" -config.freetype_load_flags = "NO_HINTING" -config.freetype_load_target = "Light" -config.freetype_render_target = "HorizontalLcd" +config.freetype_load_target = "HorizontalLcd" config.custom_block_glyphs = false config.allow_square_glyphs_to_overflow_width = "Always"