-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathalacritty.toml
More file actions
123 lines (99 loc) · 2 KB
/
alacritty.toml
File metadata and controls
123 lines (99 loc) · 2 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
116
117
118
119
120
121
122
123
[general]
import = [
# "~/.config/alacritty/alacritty_themes/themes/everforest_dark.toml"
# "~/.config/alacritty/alacritty_themes/themes/everforest_light.toml"
# "~/.config/alacritty/base16-alacritty/colors/base16-tomorrow-night-256.toml"
# "~/.config/alacritty/themes/dawnfox.toml"
# "~/.config/alacritty/themes/nightfox.toml"
"~/.config/alacritty/alacritty_themes/themes/macchiato.toml",
]
[env]
TERM = "xterm-256color"
[font]
size = 20.0
[font.normal]
family = "MesloLGMDZ Nerd Font"
style = "Regular"
[[keyboard.bindings]]
action = "ResetFontSize"
key = "Key0"
mods = "Command"
[[keyboard.bindings]]
action = "IncreaseFontSize"
key = "Equals"
mods = "Command"
[[keyboard.bindings]]
action = "IncreaseFontSize"
key = "Plus"
mods = "Command"
[[keyboard.bindings]]
action = "IncreaseFontSize"
key = "NumpadAdd"
mods = "Command"
[[keyboard.bindings]]
action = "DecreaseFontSize"
key = "Minus"
mods = "Command"
[[keyboard.bindings]]
action = "DecreaseFontSize"
key = "NumpadSubtract"
mods = "Command"
[[keyboard.bindings]]
action = "Paste"
key = "V"
mods = "Command"
[[keyboard.bindings]]
action = "Copy"
key = "C"
mods = "Command"
[[keyboard.bindings]]
action = "Hide"
key = "H"
mods = "Command"
[[keyboard.bindings]]
action = "Minimize"
key = "M"
mods = "Command"
[[keyboard.bindings]]
action = "Quit"
key = "Q"
mods = "Command"
[[keyboard.bindings]]
action = "Quit"
key = "W"
mods = "Command"
[[keyboard.bindings]]
action = "SpawnNewInstance"
key = "N"
mods = "Command"
[[keyboard.bindings]]
action = "ToggleFullscreen"
key = "F"
mods = "Command|Control"
[[keyboard.bindings]]
action = "SearchForward"
key = "F"
mode = "~Search"
mods = "Command"
[[keyboard.bindings]]
action = "SearchBackward"
key = "B"
mode = "~Search"
mods = "Command"
[[keyboard.bindings]]
chars = ":w\r"
key = "S"
mods = "Command"
[[keyboard.bindings]]
action = "CreateNewWindow"
key = "G"
mods = "Command"
[scrolling]
history = 10000
[window]
decorations = "full"
dynamic_padding = true
title = "Alacritty"
[window.padding]
x = 0
y = 0