about summary refs log tree commit diff
path: root/modules/workstation/windowing/alacritty/config.yml
blob: 856a7aa5af29dcbfde5987a6bcf73af865581b98 (plain) (blame)
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
window:
  # If both are `0`, this setting is ignored.
  dimensions:
    columns: 80
    lines: 24

  padding:
    x: 2
    y: 2

  dynamic_padding: true
  decorations: none
  opacity: 0.8
  startup_mode: Windowed

scrolling:
  history: 0 # disabled

font:
  normal:
    family: monospace
    #style: Regular

  bold:
    family: monospace
    #style: Bold

  italic:
    family: monospace
    #style: Italic

  offset:
    x: 0
    y: 0

  size: 11.5

  glyph_offset:
    x: 0
    y: 0

draw_bold_text_with_bright_colors: false

colors:
  primary:
    background: '0x000000'
    foreground: '0xffffff'
    # dim_foreground: auto
    # bright_foreground: normal foreground color

  cursor:
    text:   '0x161616'
    cursor: '0xfcdc07'

  normal:
    black:   '0x2e3436'
    red:     '0xb40000'
    green:   '0x307000'
    yellow:  '0xce5c00'
    blue:    '0x3465a4'
    magenta: '0x75507b'
    cyan:    '0x06989a'
    white:   '0xd3d7cf'

  bright:
    black:   '0x555753'
    red:     '0xcc0000'
    green:   '0x4e9a06'
    yellow:  '0xedd400'
    blue:    '0x729fcf'
    magenta: '0xad7fa8'
    cyan:    '0x34e2e2'
    white:   '0xeeeeec'

  # dim: default
  # indexed_colors: default

hints:
  enabled: []

# Available fields:
#   - mouse
#   - action
#   - mods (optional)
#
# Values for `mouse`:
#   - Middle
#   - Left
#   - Right
#   - Numeric identifier such as `5`
#
# All available `mods` and `action` values are documented in the key binding
# section.
mouse_bindings:
  - { mouse: Middle, action: PasteSelection }

mouse:
  double_click: { threshold: 300 }
  triple_click: { threshold: 300 }
  hide_when_typing: false

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

  # When set to `true`, selected text will be copied to both the primary and
  # the selection clipboard. Otherwise, it will only be copied to the selection
  # clipboard.
  save_to_clipboard: false

cursor:
  style: Block
  unfocused_hollow: true

live_config_reload: true