From e69f259d0e68a1ac382028cad7a50eb4652ef12a Mon Sep 17 00:00:00 2001 From: Chris Morgan Date: Sun, 25 Aug 2019 20:46:52 +1000 Subject: Add bold italic font support If the terminal escape sequences for bold and italic text are active, the text should be rendered as bold and italic. However, due to missing support in Alacritty, it would always render this text in bold. This adds support for combining the bold and italic escapes to render text in both styles and allows users to override the font for this scenario using the `font.bold_italic` configuration option. --- alacritty.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'alacritty.yml') diff --git a/alacritty.yml b/alacritty.yml index 7615c576..35c05539 100644 --- a/alacritty.yml +++ b/alacritty.yml @@ -145,6 +145,17 @@ font: # The `style` can be specified to pick a specific face. #style: Italic + # Bold italic font face + #bold_italic: + # Font family + # + # If the bold italic family is not specified, it will fall back to the + # value specified for the normal font. + #family: monospace + + # The `style` can be specified to pick a specific face. + #style: Bold Italic + # Point size size: 11.0 -- cgit