aboutsummaryrefslogtreecommitdiff
path: root/config/alacritty.yml
blob: adca798329bff509f10b719cd850ef62555eb1b2 (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
# Configuration for Alacritty, the GPU enhanced terminal emulator.

env:
  # This is to support dircolors. For now dircolors does not support alacritty.
  TERM: xterm-256color

window:
  gtk_theme_variant: dark

scrolling:
  history: 10000
  multiplier: 3

font:
  size: 8.5

colors:
   primary:
     background: '#000000'
     foreground: '#ffffff'
   normal:
     black:   '#000000'
     red:     '#cd0000'
     green:   '#00cd00'
     yellow:  '#cdcd00'
     blue:    '#6060ee'
     magenta: '#cd00cd'
     cyan:    '#00cdcd'
     white:   '#e5e5e5'
   bright:
     black:   '#7f7f7f'
     red:     '#ff0000'
     green:   '#00ff00'
     yellow:  '#ffff00'
     blue:    '#5c5cff'
     magenta: '#ff00ff'
     cyan:    '#00ffff'
     white:   '#ffffff'
  #search:
    # Allowed values are CellForeground and CellBackground, which reference the
    # affected cell, or hexadecimal colors like #ff00ff.
    #matches:
    #  foreground: '#000000'
    #  background: '#ffffff'
    #bar:
    #  background: '#c5c8c6'
    #  foreground: '#1d1f21'
  #selection:
  #  text: CellBackground
  #  background: CellForeground


#selection:
  #semantic_escape_chars: ",│`|:\"' ()[]{}<>\t"
  # When set to `true`, selected text will be copied to the primary clipboard.
  #save_to_clipboard: false

mouse:
  hide_when_typing: true