-
Notifications
You must be signed in to change notification settings - Fork 0
/
.alacritty.yml
161 lines (125 loc) · 2.76 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
# Configuration for Alacritty, the GPU enhanced terminal emulator.
#import:
# - /path/to/alacritty.yml
window:
dimensions:
columns: 90
lines: 26
padding:
x: 1
y: 1
dynamic_padding: true
# Window decorations
# Values: none, full, transparent, buttonless
decorations: full
#title: Alacritty
dynamic_title: true
font:
normal:
family: &font-family JetBrains Mono NL
#style: Regular
bold:
family: *font-family
#style: Regular
italic:
family: *font-family
#style: Italic
size: 12
# Offset is the extra space around each character.
offset:
x: 1
y: 0
#glyph_offset:
# x: 0
# y: 0
# Thin stroke font rendering (macOS only)
use_thin_strokes: true
# If `true`, bold text is drawn using the bright color variants.
#draw_bold_text_with_bright_colors: true
schemes:
onedark: &onedark
# Default colors
primary:
foreground: '0xabb2bf'
background: '0x282c34'
# Cursor colors
cursor:
text: '0x5c6370'
cursor: '0xabb2bf'
# Normal colors
normal:
black: '0x5c6370'
red: '0xe06c75'
green: '0x98c379'
yellow: '0xe5c07b'
blue: '0x61afef'
magenta: '0xc678dd'
cyan: '0x56b6c2'
white: '0xabb2bf'
# Bright colors
bright:
black: '0x4b5263'
red: '0xbe5046'
green: '0x98c379'
yellow: '0xd19a66'
blue: '0x61afef'
magenta: '0xc678dd'
cyan: '0x56b6c2'
white: '0x3e4452'
colors: *onedark
#cursor:
# text: CellBackground
# cursor: CellForeground
#vi_mode_cursor:
# text: CellBackground
# cursor: CellForeground
# background: CellForeground
#search:
#matches:
# foreground: '#000000'
# background: '#ffffff'
#focused_match:
# foreground: CellBackground
# background: CellForeground
#bar:
# background: '#c5c8c6'
# foreground: '#1d1f21'
#background_opacity: 1.0
selection:
# When set to `true`, selected text will be copied to the primary clipboard.
save_to_clipboard: true
cursor:
# Cursor style
#
# Values for `style`:
# - ▇ Block
# - _ Underline
# - | Beam
style: Block
vi_mode_style: None
unfocused_hollow: true
#thickness: 0.15
#shell:
# program: /bin/zsh
# args:
# - --login
#working_directory: None
# Send ESC (\x1b) before characters when alt is pressed.
#alt_send_esc: true
#debug:
# Display the time it takes to redraw each frame.
#render_timer: false
# Keep the log file after quitting Alacritty.
#persistent_logging: false
# Log level
#
# Values for `log_level`:
# - None
# - Error
# - Warn
# - Info
# - Debug
# - Trace
#log_level: Warn
# Print all received window events.
#print_events: false