-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.alacritty.yml
45 lines (42 loc) · 1.32 KB
/
.alacritty.yml
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
font:
normal:
family: "MesloLGS NF"
colors:
# Default colors
primary:
background: '#292C3E'
foreground: '#EBEBEB'
# Cursor colors
cursor:
text: '#FF261E'
cursor: '#EBEBEB'
# Normal colors
normal:
black: '#0d0d0d'
red: '#FF301B'
green: '#A0E521'
yellow: '#FFC620'
blue: '#1BA6FA'
magenta: '#8763B8'
cyan: '#21DEEF'
white: '#EBEBEB'
# Bright colors
bright:
black: '#6D7070'
red: '#FF4352'
green: '#B8E466'
yellow: '#FFD750'
blue: '#1BA6FA'
magenta: '#A578EA'
cyan: '#73FBF1'
white: '#FEFEF8'
key_bindings:
- { key: Left, mods: Alt, chars: "\x1bb" } # one word left
- { key: Right, mods: Alt, chars: "\x1bf" } # one word right
- { key: Left, mods: Command, chars: "\x1bOH", mode: AppCursor } # Home
- { key: Right, mods: Command, chars: "\x1bOF", mode: AppCursor } # End
- { key: 26, mods: Alt, chars: "|" }
- { key: 28, mods: Alt, chars: "[" }
- { key: 25, mods: Alt, chars: "]" }
- { key: 28, mods: Alt|Shift, chars: "{" }
- { key: 25, mods: Alt|Shift, chars: "}" }