wezterm: more font tweaks
This commit is contained in:
parent
dc237a6307
commit
ebf583cb5a
2 changed files with 8 additions and 4 deletions
dot_config/wezterm
|
@ -10,8 +10,10 @@ local tab_bg_active = '#fdf6e3'
|
|||
|
||||
-- fonts
|
||||
local fonts = wt.config_builder()
|
||||
fonts.font = wt.font('JetBrains Mono')
|
||||
fonts.harfbuzz_features = {'zero'}
|
||||
fonts.font = wt.font{
|
||||
family = 'JetBrains Mono',
|
||||
harfbuzz_features = {'zero'}
|
||||
}
|
||||
|
||||
-- theme
|
||||
local theme = wt.config_builder()
|
||||
|
|
|
@ -18,8 +18,10 @@ cfg.check_for_updates = false
|
|||
-- fonts & text
|
||||
cfg.cursor_blink_rate = 0
|
||||
cfg.bold_brightens_ansi_colors = false
|
||||
cfg.font = wt.font('Cascadia Mono PL')
|
||||
cfg.harfbuzz_features = {"ss01", "ss19", "ss20"}
|
||||
cfg.font = wt.font{
|
||||
family = 'Cascadia Mono PL',
|
||||
harfbuzz_features = {"ss01", "ss19", "ss20"}
|
||||
}
|
||||
cfg.font_size = fn.set_by_os{
|
||||
Darwin = 14,
|
||||
others = 10
|
||||
|
|
Loading…
Reference in a new issue