-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathalacritty.yml
58 lines (45 loc) · 1.25 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
import:
- ~/.config/alacritty/themes/themes/one_dark.yaml
window:
opacity: 0.88
# Specified in number of columns/lines. not pixels. If both are zero this setting is ignored.
dimensions:
columns: 168
lines: 52
padding:
x: 0
y: 0
font:
normal:
family: "JetBrains Mono"
style: Medium
bold:
family: "JetBrains Mono"
style: Bold
italic:
family: "JetBrains Mono"
style: Italic
size: 13.5
draw_bold_text_with_bright_colors: false
scrolling:
# How many lines of scrollback to keep,
# '0' will disable scrolling.
history: 10000
# Number of lines the viewport will move for every line
# scrolled when scrollback is enabled (history > 0).
multiplier: 3
# Faux Scrolling
#
# The `faux_multiplier` setting controls the number
# of lines the terminal should scroll when the alternate
# screen buffer is active. This is used to allow mouse
# scrolling for applications like `man`.
#
# To disable this completely, set `faux_multiplier` to 0.
faux_multiplier: 3
# Automatically scroll to the bottom when new text is written
# to the terminal.
auto_scroll: false
key_bindings:
- { key: N, mods: Command, action: CreateNewWindow }
- { key: F, mods: Command, action: ToggleFullscreen }