-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathalacritty.toml
107 lines (86 loc) · 2.04 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
104
105
106
107
import = [ "~/.config/alacritty/current-theme.toml" ]
[env]
TERM = "xterm-256color"
[font]
size = 17.0
offset.x = 0
offset.y = 0
[font.normal]
family = "JetBrainsMono NF"
[[keyboard.bindings]]
action = "CreateNewWindow"
key = "N"
mods = "Command"
[[keyboard.bindings]]
action = "SearchForward"
key = "F"
mods = "Command"
[[keyboard.bindings]]
chars = "alacritty -e 'btop' & \r"
key = "P"
mods = "Command"
[[keyboard.bindings]]
chars = "search_history \r"
key = "Slash"
mode = "AppCursor"
mods = "Command"
[[keyboard.bindings]]
chars = "\u001Bb"
key = "Left"
mods = "Alt"
[[keyboard.bindings]]
chars = "\u001Bf"
key = "Right"
mods = "Alt"
[[keyboard.bindings]]
key = "T"
mods = "Command"
chars = "\u0013\u0003"
[[keyboard.bindings]]
action = "ResetFontSize"
key = "Key0"
mods = "Command"
[[keyboard.bindings]]
action = "IncreaseFontSize"
key = "Equals"
mods = "Command"
[[keyboard.bindings]]
action = "DecreaseFontSize"
key = "Minus"
mods = "Command"
[[keyboard.bindings]]
key = "T"
mods = "Command"
command = { program = "/opt/homebrew/bin/tmux", args = ["new-window"] }
[[keyboard.bindings]]
key = "["
mods = "Command"
command = { program = "/opt/homebrew/bin/tmux", args = ["previous-window"] }
[[keyboard.bindings]]
key = "]"
mods = "Command"
command = { program = "/opt/homebrew/bin/tmux", args = ["next-window"] }
[[keyboard.bindings]]
key = "d"
mods = "Command"
command = { program = "/opt/homebrew/bin/tmux", args = ["split", "-h"] }
[[keyboard.bindings]]
key = "e"
mods = "Command"
command = { program = "/opt/homebrew/bin/tmux", args = ["split", "-v"] }
[[keyboard.bindings]]
key = "W"
mods = "Command"
command = { program = "/opt/homebrew/bin/tmux", args = ["kill-pane"] }
[shell]
args = ["-l", "-c", "session_name=$(tmux ls | grep -v \"(attached)\" | head -n 1 | cut -d: -f1); [ -n \"$session_name\" ] && tmux attach -t \"$session_name\" || tmux new-session"]
program = "/opt/homebrew/bin/zsh"
[window]
decorations = "buttonless"
decorations_theme_variant = "None"
dynamic_padding = false
dynamic_title = true
opacity = 1
[window.padding]
x = 10
y = 10