43 lines
1.4 KiB
YAML
43 lines
1.4 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
|