summaryrefslogtreecommitdiff
path: root/alacritty.yml
blob: 7e3d81a1013c6cb662d8bdf256a6ad5adb4f3d55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# 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

# Colors
colors:
  # Default colors
  default:
    background: 0x000000
    foreground: 0xeaeaea

  # Normal colors
  normal:
    black: 0x000000
    red: 0xd54e53
    green: 0xb9ca4a
    yellow: 0xe6c547
    blue: 0x7aa6da
    magenta: 0xc397d8
    cyan: 0x70c0ba
    white: 0x424242

  # Bright colors
  bright:
    black: 0x666666
    red: 0xff3334
    green: 0x9ec400
    yellow: 0xe7c547
    blue: 0x7aa6da
    magenta: 0xb77ee0
    cyan: 0x54ced6
    white: 0x2a2a2a

# Display tabs using this many cells
tabspaces: 8