-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathalacritty.yml
87 lines (74 loc) · 1.79 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
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
colors:
# Default colors
primary:
background: "#1e2127"
# background: "#2E3440"
foreground: "#D8DEE9"
# Normal colors
normal:
black: "#3B4252"
red: "#BF616A"
green: "#A3BE8C"
yellow: "#EBCB8B"
blue: "#81A1C1"
magenta: "#B48EAD"
cyan: "#88C0D0"
white: "#abb2bf"
# Bright colors
bright:
black: "#5c6370"
red: "#e06c75"
green: "#98c379"
yellow: "#d19a66"
blue: "#61afef"
magenta: "#c678dd"
cyan: "#56b6c2"
white: "#ECEFF4"
background_opacity: 0.9
font:
normal:
family: "MesloLGS NF"
style: Regular
bold:
family: "Fira Mono"
style: Bold
italic:
family: "Fira Mono"
style: Italic
bold_italic:
family: "Fira Mono"
style: Bold Italic
# Point size
size: 12.0
offset:
x: 0
y: 0
glyph_offset:
x: 0
y: 0
window:
padding:
x: 5
y: 5
scrolling:
# Maximum number of lines in the scrollback buffer.
# Specifying '0' will disable scrolling.
history: 10000
# Number of lines the viewport will move for every line scrolled when
# scrollback is enabled (history > 0).
multiplier: 10
# If `true`, bold text is drawn using the bright color variants.
draw_bold_text_with_bright_colors: true
selection:
semantic_escape_chars: ',│`|:"'' ()[]{}<>'
save_to_clipboard: true
live_config_reload: true
key_bindings:
- { key: V, mods: Control|Shift, action: Paste }
- { key: C, mods: Control|Shift, action: Copy }
- { key: Key0, mods: Control, action: ResetFontSize }
- { key: Equals, mods: Control, action: IncreaseFontSize }
- { key: Plus, mods: Control, action: IncreaseFontSize }
- { key: Minus, mods: Control, action: DecreaseFontSize }
- { key: Minus, mods: Control, action: DecreaseFontSize }
- { key: N, mods: Control, action: SpawnNewInstance }