-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathalacritty.toml
More file actions
83 lines (67 loc) · 1.17 KB
/
alacritty.toml
File metadata and controls
83 lines (67 loc) · 1.17 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
[colors]
draw_bold_text_with_bright_colors = true
[env]
TERM = "xterm-256color"
SHELL = "/usr/bin/fish"
[font]
size = 10.0
[font.bold]
style = "Bold"
[font.normal]
family = "Hack"
[[keyboard.bindings]]
action = "Paste"
key = "Paste"
[[keyboard.bindings]]
action = "Paste"
key = "V"
mods = "Super"
[[keyboard.bindings]]
action = "CreateNewWindow"
key = "N"
mods = "Control|Shift"
[[keyboard.bindings]]
action = "ToggleViMode"
key = "Space"
mode = "~Search"
mods = "Super|Shift"
[[keyboard.bindings]]
action = "ToggleViMode"
key = "Escape"
mode = "Vi|~Search"
[[keyboard.bindings]]
action = "Copy"
key = "C"
mods = "Super"
[[keyboard.bindings]]
action = "SearchForward"
key = "F"
mode = "~Search"
mods = "Super"
[window.padding]
x = 10
y = 5
[shell]
program = "/usr/bin/fish"
# theme info
[colors.bright]
black = "0x686868"
blue = "0x59C2FF"
cyan = "0x95E6CB"
green = "0xC2D94C"
magenta = "0xFFEE99"
red = "0xF07178"
white = "0xFFFFFF"
yellow = "0xFFB454"
[colors.normal]
black = "0x01060E"
blue = "0x53BDFA"
cyan = "0x90E1C6"
green = "0x91B362"
magenta = "0xFAE994"
red = "0xEA6C73"
white = "0xC7C7C7"
yellow = "0xF9AF4F"
[colors.primary]
background = "0x0A0E14"
foreground = "0xB3B1AD"