diff options
| author | srdusr <trevorgray@srdusr.com> | 2023-01-17 23:45:23 +0200 |
|---|---|---|
| committer | srdusr <trevorgray@srdusr.com> | 2023-01-17 23:45:23 +0200 |
| commit | 2500cfa129e80223bf0ccb8fef9a6c02c105e6c2 (patch) | |
| tree | 9a119792d94d3b5012b421bab50d15d5c414841b | |
| parent | 700542b7fba09764090de1a98d1941df27a91a23 (diff) | |
| download | dotfiles-2500cfa129e80223bf0ccb8fef9a6c02c105e6c2.tar.gz dotfiles-2500cfa129e80223bf0ccb8fef9a6c02c105e6c2.zip | |
Add font offset and glyph options
| -rw-r--r-- | .config/alacritty/alacritty.yml | 20 |
1 files changed, 17 insertions, 3 deletions
diff --git a/.config/alacritty/alacritty.yml b/.config/alacritty/alacritty.yml index 3f6fac2..714c61a 100644 --- a/.config/alacritty/alacritty.yml +++ b/.config/alacritty/alacritty.yml @@ -30,11 +30,25 @@ scrolling: font: - normal: - family: JetBrains Mono Medium + normal: + family: JetBrains Mono Medium + #family: Fira Mono Regular #family: UbuntuMono Nerd Font Regular - size: 8.5 + #family: monospace + size: 8.5 + offset: + x: 0 + y: 0 + glyph_offset: + x: 0 + y: 0 + builtin_box_drawing: true #size: 8.5 + + # 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. + key_bindings: - { key: V, mods: Control, action: Paste } - { key: C, mods: Control, action: Copy } |
