diff options
author | Aaron Williamson <guitarfanman@gmail.com> | 2017-01-15 10:38:04 -0700 |
---|---|---|
committer | Joe Wilm <jwilm@users.noreply.github.com> | 2017-05-01 08:52:22 -0700 |
commit | 0a1dc56bcf0b125cfd79787148d219d9e38f85b8 (patch) | |
tree | d30a7eec40922926355efb915127b80b3c109cf8 /alacritty_macos.yml | |
parent | 1277e07671a15b87832af90c7244a0cac480b829 (diff) | |
download | alacritty-0a1dc56bcf0b125cfd79787148d219d9e38f85b8.tar.gz alacritty-0a1dc56bcf0b125cfd79787148d219d9e38f85b8.zip |
Add glyph offset option to user configuration
Add the ability to move glyphs within their cells on a global basis via
an option in the configuration file.
Diffstat (limited to 'alacritty_macos.yml')
-rw-r--r-- | alacritty_macos.yml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/alacritty_macos.yml b/alacritty_macos.yml index 0c16d42b..fce6d4b5 100644 --- a/alacritty_macos.yml +++ b/alacritty_macos.yml @@ -53,12 +53,20 @@ font: # Point size of the font size: 12.0 + # Offset is the extra space around each character. offset.y can be thought of # as modifying the linespacing, and offset.x as modifying the letter spacing. offset: x: 0.0 y: 0.0 + # Glyph offset determines the locations of the glyphs within their cells with + # the default being at the bottom. Increase the x offset to move the glyph to + # the right, increase the y offset to move the glyph upward. + glyph_offset: + x: 0.0 + y: 0.0 + # OS X only: use thin stroke font rendering. Thin strokes are suitable # for retina displays, but for non-retina you probably want this set to # false. |