blob: e0d1d3fa1b62a2239ea961319bbad7bd7fd4e211 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Configuration for Alacritty, the GPU enhanced terminal emulator
# The FreeType rasterizer needs to know the device DPI for best results
dpi:
x: 96.0
y: 96.0
# Font configuration
font:
family: DejaVu Sans Mono
style: Book
# Point size of the font
size: 11.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: 2.0
y: -7.0
# Should display the render timer
render_timer: false
|