aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/home/.config/alacritty/alacritty.yml
blob: 65185e8f7b13d255dd222d5f55295e046aa94912 (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
# Colors (Gruvbox dark)
colors:
  # Default colors
  primary:
    background: '0x1d2021'
    # medium contrast: background: '0x282828'
    # soft contrast: background: '0x32302f'
    foreground: '0xebdbb2'

  # Normal colors
  normal:
    black:   '0x282828'
    red:     '0xcc241d'
    green:   '0x98971a'
    yellow:  '0xd79921'
    blue:    '0x458588'
    magenta: '0xb16286'
    cyan:    '0x689d6a'
    white:   '0xa89984'

  # Bright colors
  bright:
    black:   '0x928374'
    red:     '0xfb4934'
    green:   '0xb8bb26'
    yellow:  '0xfabd2f'
    blue:    '0x83a598'
    magenta: '0xd3869b'
    cyan:    '0x8ec07c'
    white:   '0xebdbb2'

key_bindings:
  - { key: Return,   mods: Control|Shift, action: SpawnNewInstance }
  - { key: K, mods: Alt, action: ScrollLineUp   }
  - { key: J, mods: Alt, action: ScrollLineDown }
  - { key: U, mods: Alt, action: ScrollPageUp   }
  - { key: D, mods: Alt, action: ScrollPageDown }
  - { key: G, mods: Alt, action: ScrollToTop }
  - { key: G, mods: Alt|Shift, action: ScrollToBottom }

cursor:
  # Cursor style
  style:
    # Cursor blinking state
    #
    # Values for `blinking`:
    #   - Never: Prevent the cursor from ever blinking
    #   - Off: Disable blinking by default
    #   - On: Enable blinking by default
    #   - Always: Force the cursor to always blink
    blinking: On

  # Cursor blinking interval in milliseconds.
  blink_interval: 500

  # Time after which cursor stops blinking, in seconds.
  #
  # Specifying '0' will disable timeout for blinking.
  blink_timeout: 0

# Live config reload (changes require restart)
live_config_reload: false