diff options
author | zandr <7629614+deathlyfrantic@users.noreply.github.com> | 2022-01-29 14:50:44 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-29 22:50:44 +0300 |
commit | 094c2c9269685e8759104f2e9c05eca323a57fe4 (patch) | |
tree | 2537bb8ee23e834fcd5315b825b7cd89a11339a4 /alacritty.yml | |
parent | d1deff9fae05dec5a6a2af08dc34ed3230f68da9 (diff) | |
download | alacritty-094c2c9269685e8759104f2e9c05eca323a57fe4.tar.gz alacritty-094c2c9269685e8759104f2e9c05eca323a57fe4.zip |
Add option to control built-in box drawing chars
This commit adds the config `font.builtin_box_drawing` option to
control built-in font, which is enabled by default.
Diffstat (limited to 'alacritty.yml')
-rw-r--r-- | alacritty.yml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/alacritty.yml b/alacritty.yml index 00c16ce3..c9959497 100644 --- a/alacritty.yml +++ b/alacritty.yml @@ -178,6 +178,13 @@ # it is recommended to set `use_thin_strokes` to `false`. #use_thin_strokes: true + # Use built-in font for box drawing characters. + # + # If `true`, Alacritty will use a custom built-in font for box drawing + # characters (Unicode points 2500 - 259f). + # + #builtin_box_drawing: true + # If `true`, bold text is drawn using the bright color variants. #draw_bold_text_with_bright_colors: false |