summaryrefslogtreecommitdiff
path: root/.config/alacritty.yml
blob: 6cde4fdece6ae9e55d4e8633654f0607bf221779 (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
shell:
  program: /bin/bash
  args:
    - '--login'
 
window:
  dimensions:
    columns: 80
    lines: 37
  opacity: 0.86
  resize_increments: true
  option_as_alt: Both
  alt_send_esc: true
 
font:
  normal:
    family: 'DejaVuSansM Nerd Font Mono'
    style: 'Regular'
  bold:
    family: 'DejaVuSansM Nerd Font Mono'
    style: 'Bold'
  italic:
    family: 'DejaVuSansM Nerd Font Mono'
    style: 'Oblique'
  bold_italic:
    family: 'DejaVuSansM Nerd Font Mono'
    style: 'Bold Oblique'
  size: 7.0
 
# theme: high-contrast, plus the blues from github-dark, from 
# https://github.com/alacritty/alacritty-theme 
colors:
  # Default colors 
  primary:
    background: '0x0a0a0a'
    foreground: '0xdddddd'
 
  # Colors the cursor will use if `custom_cursor_colors` is true 
  cursor:
    text: '0xaaaaaa'
    cursor: '0xffffff'
 
  # Normal colors 
  normal:
    black:   '0x000000'
    red:     '0xff0000'
    green:   '0x00ff00'
    yellow:  '0xffff00'
    blue:    '0x2188ff'
    magenta: '0xff00ff'
    cyan:    '0x00ffff'
    white:   '0xffffff'
 
  # Bright colors 
  bright:
    black:   '0x888888'
    red:     '0xff0000'
    green:   '0x00ff00'
    yellow:  '0xffff00'
    blue:    '0x79b8ff'
    magenta: '0xff00ff'
    cyan:    '0x00ffff'
    white:   '0xffffff'
 
draw_bold_text_with_bright_colors: true
 
selection:
  semantic_escape_chars: " !@#$%^&*(){}[]'\",.<>/?=+-\\|`~;:"
 
hints:
  alphabet: "aoeuidhtns"
  enabled:
    regex: "(mailto|http|https):[^\u0000-\u001F\u007F-\u009F<>\"\\s{-}\\^⟨⟩`]+"
      hyperlinks: true
      command: xdg-open
      post_processing: true
      mouse:
        enabled: true
        mods: Command
      binding:
        key: Tab
        mods: Control|Command