mirror of
https://mzte.de/git/LordMZTE/dotfiles.git
synced 2024-12-13 12:43:00 +01:00
fix wezterm fonts
This commit is contained in:
parent
78504929b7
commit
50a1305532
1 changed files with 24 additions and 1 deletions
25
.wezterm.lua
25
.wezterm.lua
|
@ -38,7 +38,30 @@ return {
|
|||
}
|
||||
},
|
||||
|
||||
font = wezterm.font("Iosevka Nerd Font Complete"),
|
||||
font_dirs = {"C:\\Windows\\Fonts"},
|
||||
|
||||
font_rules = {
|
||||
{
|
||||
italic = false,
|
||||
bold = false,
|
||||
font = wezterm.font("Iosevka Nerd Font Complete"),
|
||||
},
|
||||
{
|
||||
italic = true,
|
||||
bold = false,
|
||||
font = wezterm.font("Iosevka Italic Nerd Font Complete"),
|
||||
},
|
||||
{
|
||||
italic = false,
|
||||
bold = true,
|
||||
font = wezterm.font("Iosevka Bold Nerd Font Complete"),
|
||||
},
|
||||
{
|
||||
italic = true,
|
||||
bold = true,
|
||||
font = wezterm.font("Iosevka Bold Italic Nerd Font Complete"),
|
||||
},
|
||||
},
|
||||
|
||||
launch_menu = {
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue