-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.alacritty.toml
87 lines (67 loc) · 1.16 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
[cursor]
unfocused_hollow = true
[cursor.style]
blinking = "Never"
[env]
TERM = "xterm-256color"
[font]
size = 17
[font.glyph_offset]
y = 0
x = 0
[font.normal]
family = "Hack Nerd Font"
[font.offset]
y = 6
x = 0
[[keyboard.bindings]]
key = "Comma"
mods = "Command"
[keyboard.bindings.command]
args = ["-c", "open ~/.config/alacritty/alacritty.yml"]
program = "sh"
[[keyboard.bindings]]
action = "SpawnNewInstance"
key = "N"
mods = "Command"
[[keyboard.bindings]]
chars = " "
key = "Space"
mods = "Alt"
[[keyboard.bindings]]
chars = "\u0015"
key = "Back"
mods = "Super"
[[keyboard.bindings]]
chars = "\u001Bb"
key = "Left"
mods = "Alt"
[[keyboard.bindings]]
chars = "\u001Bf"
key = "Right"
mods = "Alt"
[[keyboard.bindings]]
chars = "\u001BOH"
key = "Left"
mode = "AppCursor"
mods = "Command"
[[keyboard.bindings]]
chars = "\u001BOF"
key = "Right"
mode = "AppCursor"
mods = "Command"
[scrolling]
# auto_scroll = true
history = 10000
[window]
decorations = "buttonless"
opacity = 0.95
startup_mode = "Maximized"
[window.padding]
x = 5
y = 5
[general]
# https://github.com/alacritty/alacritty-theme
import = [
"~/.config/alacritty/themes/themes/gruvbox_dark.toml"
]