-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathalacritty.toml
103 lines (82 loc) · 1.48 KB
/
alacritty.toml
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
live_config_reload = true
[colors.bright]
black = "#002b36"
blue = "#839496"
cyan = "#93a1a1"
green = "#586e75"
magenta = "#6c71c4"
red = "#cb4b16"
white = "#fdf6e3"
yellow = "#657b83"
[colors.normal]
black = "#073642"
blue = "#268bd2"
cyan = "#2aa198"
green = "#859900"
magenta = "#d33682"
red = "#dc322f"
white = "#eee8d5"
yellow = "#b58900"
[colors.primary]
background = "#000000"
foreground = "#fbfbfb"
[font]
size = 10.0
[font.bold]
family = "Inconsolata"
style = "Bold"
[font.bold_italic]
family = "Inconsolata"
style = "Bold Italic"
[font.italic]
family = "Inconsolata"
style = "Italic"
[font.normal]
family = "Inconsolata"
style = "Regular"
[[keyboard.bindings]]
action = "Paste"
key = "V"
mods = "Control|Shift"
[[keyboard.bindings]]
action = "Copy"
key = "C"
mods = "Control|Shift"
[[keyboard.bindings]]
action = "PasteSelection"
key = "Insert"
mods = "Shift"
[[keyboard.bindings]]
action = "ResetFontSize"
key = "Key0"
mods = "Control"
[[keyboard.bindings]]
action = "IncreaseFontSize"
key = "Equals"
mods = "Control"
[[keyboard.bindings]]
action = "IncreaseFontSize"
key = "Plus"
mods = "Control"
[[keyboard.bindings]]
action = "DecreaseFontSize"
key = "Minus"
mods = "Control"
[[mouse.bindings]]
action = "PasteSelection"
mouse = "Middle"
[scrolling]
history = 100000
multiplier = 3
[selection]
semantic_escape_chars = ",│`|:\"' ()[]{}<>\t"
[window]
decorations = "full"
dynamic_title = true
opacity = 0.8
[window.dimensions]
columns = 80
lines = 24
[window.padding]
x = 5
y = 1