-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.alacritty.toml
103 lines (82 loc) · 1.56 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]
draw_bold_text_with_bright_colors = false
[[colors.indexed_colors]]
color = "0xff9e64"
index = 16
[[colors.indexed_colors]]
color = "0xdb4b4b"
index = 17
[colors.bright]
black = "0x414868"
blue = "0x7aa2f7"
cyan = "0x7dcfff"
green = "0x9ece6a"
magenta = "0xbb9af7"
red = "0xf7768e"
white = "0xc0caf5"
yellow = "0xe0af68"
[colors.normal]
black = "0x15161e"
blue = "0x7aa2f7"
cyan = "0x7dcfff"
green = "0x9ece6a"
magenta = "0xbb9af7"
red = "0xf7768e"
white = "0xa9b1d6"
yellow = "0xe0af68"
[colors.primary]
background = "0x1a1b26"
foreground = "0xc0caf5"
[font]
#AppleFontSmoothing = 0
size = 10.0
[font.bold]
family = "CaskaydiaMonoNerdFont"
style = "Bold"
[font.bold_italic]
family = "CaskaydiaMonoNerdFont"
style = "Bold Italic"
[font.italic]
family = "CaskaydiaMonoNerdFont"
style = "Italic"
[font.normal]
family = "CaskaydiaMonoNerdFont"
style = "Regular"
[[keyboard.bindings]]
action = "Paste"
key = "Paste"
[[keyboard.bindings]]
action = "Copy"
key = "Copy"
[[keyboard.bindings]]
action = "ScrollPageUp"
key = "PageUp"
mode = "~Alt"
mods = "Shift"
[[keyboard.bindings]]
action = "ScrollPageDown"
key = "PageDown"
mode = "~Alt"
mods = "Shift"
[[keyboard.bindings]]
action = "ScrollToTop"
key = "Home"
mode = "~Alt"
mods = "Shift"
[[keyboard.bindings]]
action = "ScrollToBottom"
key = "End"
mode = "~Alt"
mods = "Shift"
[mouse]
hide_when_typing = false
[shell]
args = ["new-session", "-A", "-D", "-s", "main"]
program = "/usr/bin/tmux"
[window]
dynamic_title = true
opacity = 0.9
[window.class]
general = "Alacritty"
instance = "Alacritty"