-
Notifications
You must be signed in to change notification settings - Fork 1
/
alacritty.toml
89 lines (69 loc) · 1.26 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
import = ["~/.config/alacritty/kanagawa_dragon.toml"]
live_config_reload = true
[cursor]
blink_interval = 550
blink_timeout = 0
thickness = 0.2
unfocused_hollow = true
[cursor.style]
blinking = "Always"
shape = "Block"
[env]
TERM = "xterm-256color"
[font]
size = 18
[font.normal]
family = "CommitMono Nerd Font Mono"
[font.offset]
x = 0
y = 1
[font.glyph_offset]
x = 1
y = 0
[[keyboard.bindings]]
action = "Paste"
key = "V"
mods = "Control|Shift"
[[keyboard.bindings]]
action = "Copy"
key = "C"
mods = "Control|Shift"
[[keyboard.bindings]]
action = "PasteSelection"
key = "Insert"
mods = "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"
[mouse]
hide_when_typing = true
[scrolling]
history = 10000
multiplier = 3
[selection]
save_to_clipboard = false
semantic_escape_chars = ",│`|:\"' ()[]{}<>"
[shell]
args = ["-l", "-c", "tmux new-session -A -s main"]
program = "/bin/zsh"
[window]
dynamic_padding = false
dynamic_title = false
opacity = 1.0
option_as_alt = "Both"
startup_mode = "Windowed"
[window.dimensions]
columns = 160
lines = 40
[window.padding]
x = 6
y = 6