summaryrefslogtreecommitdiff
path: root/alacritty/.config/alacritty/alacritty.yml
blob: eb23ab9a99a0de7b124795ec0a74d7863ac30581 (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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
colors:
  # Default colors
  primary:
    background: '0x000000'
    foreground: '0xeeffff'

  # Normal colors
  normal:
    black:   '0x000000'
    red:     '0xf07178'
    green:   '0x13ca91'
    yellow:  '0x00fdb4'
    blue:    '0x7898fb'
    magenta: '0xff3299'
    cyan:    '0x79ffe1'
    white:   '0xeeffff'

  # Bright colors
  bright:
    black:   '0x4a4a4a'
    red:     '0xf78c6c'
    green:   '0x303030'
    yellow:  '0x353535'
    blue:    '0x787878'
    magenta: '0xeeffff'
    cyan:    '0xff5370'
    white:   '0xffffff'

background_opacity: 1.0

font:
  normal:
    family: "Hermit"
    style: Regular
  bold:
    family: "Hermit"
    style: Bold
  italic:
    family: "Hermit"
    style: Italic

  # Point size
  size: 8.5
  antialias: true
  autohint: true
  lcdfiler: lcddefault
  rgba: rgb

  offset:
    x: 0
    y: 0
  glyph_offset:
    x: 0
    y: 0

window:
  padding:
    x: 8
    y: 8

cursor:
  #   - ▇ Block
  #   - _ Underline
  #   - | Beam
  style: Block

scrolling:
  # Maximum number of lines in the scrollback buffer.
  # Specifying '0' will disable scrolling.
  history: 10000

  # Number of lines the viewport will move for every line scrolled when
  # scrollback is enabled (history > 0).
  multiplier: 10

# If `true`, bold text is drawn using the bright color variants.
draw_bold_text_with_bright_colors: true

selection:
  semantic_escape_chars: ',│`|:"'' ()[]{}<>'
  save_to_clipboard: true

live_config_reload: true

key_bindings:
  - { key: V, mods: Control|Shift, action: Paste }
  - { key: C, mods: Control|Shift, action: Copy }
  - { key: Key0, mods: Control, action: ResetFontSize }
  - { key: Equals, mods: Control, action: IncreaseFontSize }
  - { key: Add, mods: Control, action: IncreaseFontSize }
  - { key: Subtract, mods: Control, action: DecreaseFontSize }
  - { key: Minus, mods: Control, action: DecreaseFontSize }