-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathalacritty.toml
More file actions
115 lines (90 loc) · 1.53 KB
/
alacritty.toml
File metadata and controls
115 lines (90 loc) · 1.53 KB
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
115
[[keyboard.bindings]]
action = "Paste"
key = "V"
mods = "Control|Shift"
[[keyboard.bindings]]
action = "Copy"
key = "C"
mods = "Control|Shift"
[[keyboard.bindings]]
action = "ResetFontSize"
key = "Key0"
mods = "Control"
[[keyboard.bindings]]
action = "IncreaseFontSize"
key = "Equals"
mods = "Control"
[[keyboard.bindings]]
action = "DecreaseFontSize"
key = "Minus"
mods = "Control"
[[keyboard.bindings]]
action = "Paste"
key = "Paste"
[[keyboard.bindings]]
action = "Copy"
key = "Copy"
[mouse]
[[mouse.bindings]]
action = "PasteSelection"
mouse = "Middle"
[colors.bright]
black = "0x545454"
blue = "0x5454ff"
cyan = "0x54ffff"
green = "0x54ff54"
magenta = "0xff54ff"
red = "0xff5454"
white = "0xf3f3f3"
yellow = "0xedd400"
[colors.cursor]
cursor = "0x000000"
text = "0xffffff"
[colors.normal]
black = "0x000000"
blue = "0x0000aa"
cyan = "0x00aaaa"
green = "0x00aa00"
magenta = "0xad7fa8"
red = "0xcc0000"
white = "0xeeeeec"
yellow = "0xc4a000"
[colors.primary]
background = "0xddf4d4"
foreground = "0x1e1e1e"
[debug]
log_level = "OFF"
print_events = false
[env]
TERM = "xterm-256color"
[font]
size = 10.0
[font.bold]
family = "Roboto Mono"
style = "Bold"
[font.bold_italic]
family = "Roboto Mono"
style = "Bold Italic"
[font.glyph_offset]
x = 0
y = 0
[font.italic]
family = "Roboto Mono"
style = "Italic"
[font.normal]
family = "Roboto Mono"
style = "Medium"
[font.offset]
x = 0
y = 0
[scrolling]
history = 5000
multiplier = 3
[window]
decorations = "full"
startup_mode = "Windowed"
title = "Alacritty"
[window.padding]
x = 0
y = 0
[keyboard]