From 13cb45d8069f662a9cc107da2345e4c61afbaf2e Mon Sep 17 00:00:00 2001 From: rootiest Date: Wed, 19 Mar 2025 21:00:25 -0400 Subject: [PATCH] feat(font): use block glyphs and tweak char height --- config/font.lua | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/config/font.lua b/config/font.lua index 13a9b93..a414706 100644 --- a/config/font.lua +++ b/config/font.lua @@ -30,14 +30,19 @@ local opts = { tab_max_width = 60, tab_bar_at_bottom = false, - -- Unicode Version + -- Unicode Version unicode_version = 14, -- Resize by cell use_resize_increments = true, + -- Use custom block glyphs + custom_block_glyphs = true, + + use_cap_height_to_scale_fallback_fonts = true, + -- Ignore any missing glyphs - warn_about_missing_glyphs = false, + -- warn_about_missing_glyphs = false, } return opts