summaryrefslogtreecommitdiff
path: root/alacritty.toml
blob: 9f191749893dd618e764347c2195489dfe9b27e7 (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
# ~/.config/alacritty/alacritty.toml

[env]
TERM = "xterm-256color"

[window]
decorations = "full"
opacity = 0.96

[window.padding]
x = 8
y = 8

[font]
size = 9

[cursor.style]
shape = "Beam"
blinking = "On"

[scrolling]
history = 10000
multiplier = 3

[shell]
program = "/bin/bash" # or "/bin/zsh"

[[keyboard.bindings]]
key = "V"
mods = "Control|Shift"
action = "Paste"

[[keyboard.bindings]]
key = "C"
mods = "Control|Shift"
action = "Copy"

[[keyboard.bindings]]
key = "Q"
mods = "Control|Shift"
action = "Quit"

[colors.primary]
background = "0x1e1e2e"
foreground = "0xcdd6f4"