73 lines
2.6 KiB
YAML
73 lines
2.6 KiB
YAML
# Font configuration (changes require restart)
|
|
#
|
|
# Important font attributes like antialiasing, subpixel aa, and hinting can be
|
|
# controlled through fontconfig. Specifically, the following attributes should
|
|
# have an effect:
|
|
#
|
|
# * hintstyle
|
|
# * antialias
|
|
# * lcdfilter
|
|
# * rgba
|
|
#
|
|
# For instance, if you wish to disable subpixel antialiasing, you might set the
|
|
# rgba property to "none". If you wish to completely disable antialiasing, you
|
|
# can set antialias to false.
|
|
#
|
|
# Please see these resources for more information on how to use fontconfig
|
|
#
|
|
# * https://wiki.archlinux.org/index.php/font_configuration#Fontconfig_configuration
|
|
# * file:///usr/share/doc/fontconfig/fontconfig-user.html
|
|
font:
|
|
normal:
|
|
family: Iosevka Term
|
|
|
|
# Point size of the font
|
|
size: 13
|
|
|
|
# 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
|
|
y: 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
|
|
y: 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.
|
|
use_thin_strokes: true
|
|
|
|
# Bind all the Alt+[letter] combinations to avoid getting the special
|
|
# characters from Option+[letter].
|
|
key_bindings:
|
|
- { key: A, mods: Alt, chars: "\x1ba" }
|
|
- { key: B, mods: Alt, chars: "\x1bb" }
|
|
- { key: C, mods: Alt, chars: "\x1bc" }
|
|
- { key: D, mods: Alt, chars: "\x1bd" }
|
|
- { key: E, mods: Alt, chars: "\x1be" }
|
|
- { key: F, mods: Alt, chars: "\x1bf" }
|
|
- { key: G, mods: Alt, chars: "\x1bg" }
|
|
- { key: H, mods: Alt, chars: "\x1bh" }
|
|
- { key: I, mods: Alt, chars: "\x1bi" }
|
|
- { key: J, mods: Alt, chars: "\x1bj" }
|
|
- { key: K, mods: Alt, chars: "\x1bk" }
|
|
- { key: L, mods: Alt, chars: "\x1bl" }
|
|
- { key: M, mods: Alt, chars: "\x1bm" }
|
|
- { key: N, mods: Alt, chars: "\x1bn" }
|
|
- { key: O, mods: Alt, chars: "\x1bo" }
|
|
- { key: P, mods: Alt, chars: "\x1bp" }
|
|
- { key: Q, mods: Alt, chars: "\x1bq" }
|
|
- { key: R, mods: Alt, chars: "\x1br" }
|
|
- { key: S, mods: Alt, chars: "\x1bs" }
|
|
- { key: T, mods: Alt, chars: "\x1bt" }
|
|
- { key: U, mods: Alt, chars: "\x1bu" }
|
|
- { key: V, mods: Alt, chars: "\x1bv" }
|
|
- { key: W, mods: Alt, chars: "\x1bw" }
|
|
- { key: X, mods: Alt, chars: "\x1bx" }
|
|
- { key: Y, mods: Alt, chars: "\x1by" }
|
|
- { key: Z, mods: Alt, chars: "\x1bz" }
|