1
0
Fork 0

wezterm: font sizes

This commit is contained in:
Von Random 2023-10-16 12:24:24 +03:00
parent 9ac26bc683
commit 652846869c
2 changed files with 2 additions and 2 deletions

View file

@ -8,7 +8,7 @@ local fonts = wt.config_builder()
fonts.font = wt.font('JetBrains Mono') fonts.font = wt.font('JetBrains Mono')
fonts.font_size = fn.set_by_os{ fonts.font_size = fn.set_by_os{
Darwin = 14, Darwin = 14,
others = 11 others = 10
} }
fonts.harfbuzz_features = {'calt=0', 'clig=0', 'liga=0'} fonts.harfbuzz_features = {'calt=0', 'clig=0', 'liga=0'}

View file

@ -15,7 +15,7 @@ cfg.cursor_blink_rate = 0
cfg.bold_brightens_ansi_colors = false cfg.bold_brightens_ansi_colors = false
cfg.font = wt.font('Fantasque Sans Mono') cfg.font = wt.font('Fantasque Sans Mono')
cfg.font_size = fn.set_by_os{ cfg.font_size = fn.set_by_os{
Darwin = 15, Darwin = 16,
others = 12 others = 12
} }