1
0
Fork 0

wezterm: fonts again

This commit is contained in:
Von Random 2024-05-20 18:11:54 +03:00
parent 5b49260645
commit 8eefec7bb8
2 changed files with 8 additions and 8 deletions

View file

@ -13,11 +13,11 @@ local cursor_bg = '#cb4b16'
-- fonts -- fonts
local fonts = wt.config_builder() local fonts = wt.config_builder()
fonts.font = wt.font('Cascadia Mono PL') fonts.font = wt.font('Fantasque Sans Mono')
fonts.harfbuzz_features = {'ss01', 'ss19', 'ss20'} fonts.harfbuzz_features = {'calt=0'}
fonts.font_size = fn.set_by_os{ fonts.font_size = fn.set_by_os{
Darwin = 14, Darwin = 15,
others = 11 others = 12
} }
-- theme -- theme

View file

@ -20,11 +20,11 @@ cfg.check_for_updates = false
-- fonts & text -- fonts & text
cfg.cursor_blink_rate = 0 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('Cascadia Mono PL')
cfg.harfbuzz_features = {'calt=0'} cfg.harfbuzz_features = {'ss01', 'ss19', 'ss20'}
cfg.font_size = fn.set_by_os{ cfg.font_size = fn.set_by_os{
Darwin = 15, Darwin = 14,
others = 12 others = 11
} }
-- visuals -- visuals