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
|
-- fonts
|
||||||
local fonts = wt.config_builder()
|
local fonts = wt.config_builder()
|
||||||
fonts.font = wt.font('JetBrains Mono')
|
fonts.font = wt.font{
|
||||||
fonts.harfbuzz_features = {'zero'}
|
family = 'JetBrains Mono',
|
||||||
|
harfbuzz_features = {'zero'}
|
||||||
|
}
|
||||||
|
|
||||||
-- theme
|
-- theme
|
||||||
local theme = wt.config_builder()
|
local theme = wt.config_builder()
|
||||||
|
|
|
@ -18,8 +18,10 @@ 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('Cascadia Mono PL')
|
cfg.font = wt.font{
|
||||||
cfg.harfbuzz_features = {"ss01", "ss19", "ss20"}
|
family = 'Cascadia Mono PL',
|
||||||
|
harfbuzz_features = {"ss01", "ss19", "ss20"}
|
||||||
|
}
|
||||||
cfg.font_size = fn.set_by_os{
|
cfg.font_size = fn.set_by_os{
|
||||||
Darwin = 14,
|
Darwin = 14,
|
||||||
others = 10
|
others = 10
|
||||||
|
|
Loading…
Reference in a new issue