iosevka: Fix font naming scheme update
New versions of Iosevka seem to not be callable simply through 'Iosevka' as before but require the full 'Iosevka Nerd Font' terminus for my case of having the archlinux nerdfont package for the font installed. This commit fixes wrong fonts in wayland and the wezterm terminal as well as a longer running issue in mpv so they all correctly display Iosevka.
This commit is contained in:
parent
1bcab1d5e7
commit
953fdaaf1e
3 changed files with 5 additions and 5 deletions
|
@ -11,7 +11,7 @@
|
|||
</alias>
|
||||
<alias>
|
||||
<family>monospace</family>
|
||||
<prefer><family>Iosevka</family></prefer>
|
||||
<prefer><family>Iosevka Nerd Font</family></prefer>
|
||||
</alias>
|
||||
<alias>
|
||||
<family>fantasy</family>
|
||||
|
|
|
@ -35,8 +35,8 @@ screenshot-tag-colorspace=yes
|
|||
osc=no
|
||||
osd-bar=no
|
||||
|
||||
osd-font='Iosevka Mono'
|
||||
osd-font-size=16
|
||||
osd-font='Iosevka Nerd Font'
|
||||
osd-font-size=15
|
||||
|
||||
### Subtitles
|
||||
|
||||
|
|
|
@ -64,12 +64,12 @@ return {
|
|||
tab_bar_at_bottom = true,
|
||||
window_padding = { left = 0, right = 0, top = 0, bottom = 0 },
|
||||
|
||||
color_scheme = "Nord (base16)",
|
||||
color_scheme = "Railscasts (base16)",
|
||||
|
||||
-- default_prog = {"nu"},
|
||||
scrollback_lines = 10000,
|
||||
|
||||
font = wezterm.font('Iosevka'),
|
||||
font = wezterm.font('Iosevka Nerd Font'),
|
||||
line_height = 1.0,
|
||||
|
||||
leader = { key = 'a', mods = 'CTRL', timeout_milliseconds = 1500 },
|
||||
|
|
Loading…
Reference in a new issue