dotfiles
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(wezterm): Use Cascadia font instead of Victor

+9 -11
+9 -11
wezterm/wezterm.lua
··· 14 14 intensity = 'Normal', 15 15 font = wezterm.font { 16 16 -- TODO: buy 'Operator Mono' font someday... 17 - family = 'Victor Mono', 18 - style = 'Italic', 19 - }, 20 - }, 21 - { 22 - italic = true, 23 - intensity = 'Half', 24 - font = wezterm.font { 25 - family = 'Victor Mono', 26 - weight = 'DemiBold', 17 + -- other cursive fonts : 18 + -- Cascadia Mono, 19 + -- Victor Mono, 20 + -- Dank Mono 21 + family = 'Cascadia Code', 22 + harfbuzz_features = { 'ss01=1' }, 23 + weight = 'DemiLight', 27 24 style = 'Italic', 28 25 }, 29 26 }, ··· 31 28 italic = true, 32 29 intensity = 'Bold', 33 30 font = wezterm.font { 34 - family = 'Victor Mono', 31 + family = 'Cascadia Code', 32 + harfbuzz_features = { 'ss01=1' }, 35 33 weight = 'Bold', 36 34 style = 'Italic', 37 35 },