diff options
author | Adam M. Stück <adam@adast.xyz> | 2023-02-03 23:57:04 +0100 |
---|---|---|
committer | Adam M. Stück <adam@adast.xyz> | 2023-02-03 23:57:04 +0100 |
commit | ba4b119b0dec8477b25bb3feb64e4acd9b3fa447 (patch) | |
tree | 4cd004b7c856986a83b6e633c3ceb12e1103b90a | |
parent | 30411445b57dd574f988ed8e86b270657e12c0e0 (diff) |
alacritty: use same font across all styles
No reason to hardcode this. The default behaviour already handles it
(read the comments)
-rw-r--r-- | .config/alacritty/alacritty.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.config/alacritty/alacritty.yml b/.config/alacritty/alacritty.yml index 7fc2a6b..7df0820 100644 --- a/.config/alacritty/alacritty.yml +++ b/.config/alacritty/alacritty.yml @@ -107,7 +107,7 @@ font: # # If the bold family is not specified, it will fall back to the # value specified for the normal font. - family: JetBrainsMono Nerd Font + # family: JetBrainsMono Nerd Font # The `style` can be specified to pick a specific face. style: Bold @@ -117,7 +117,7 @@ font: # # If the italic family is not specified, it will fall back to the # value specified for the normal font. - family: JetBrainsMono Nerd Font + # family: JetBrainsMono Nerd Font # The `style` can be specified to pick a specific face. style: Italic @@ -127,7 +127,7 @@ font: # If the bold italic family is not specified, it will fall back to the # value specified for the normal font. - family: JetBrainsMono Nerd Font + # family: JetBrainsMono Nerd Font # The `style` can be specified to pick a specific face. style: Bold Italic |