.config/alacritty/alacritty.yml (view raw)
1# Configuration for Alacritty, the GPU enhanced terminal emulator.
2
3# Import additional configuration files
4#
5# These configuration files will be loaded in order, replacing values in files
6# loaded earlier with those loaded later in the chain. The file itself will
7# always be loaded last.
8#import:
9# - /path/to/alacritty.yml
10
11# Any items in the `env` entry below will be added as
12# environment variables. Some entries may override variables
13# set by alacritty itself.
14env:
15 # TERM variable
16 #
17 # This value is used to set the `$TERM` environment variable for
18 # each instance of Alacritty. If it is not present, alacritty will
19 # check the local terminfo database and use `alacritty` if it is
20 # available, otherwise `xterm-256color` is used.
21 TERM: alacritty
22
23window:
24 # Window dimensions (changes require restart)
25 #
26 # Number of lines/columns (not pixels) in the terminal. The number of columns
27 # must be at least `2`, while using a value of `0` for columns and lines will
28 # fall back to the window manager's recommended size.
29 #dimensions:
30 # columns: 0
31 # lines: 0
32
33 # Window position (changes require restart)
34 #
35 # Specified in number of pixels.
36 # If the position is not set, the window manager will handle the placement.
37 #position:
38 # x: 0
39 # y: 0
40
41 # Window padding (changes require restart)
42 #
43 # Blank space added around the window in pixels. This padding is scaled
44 # by DPI and the specified value is always added at both opposing sides.
45 padding:
46 x: 7
47 y: 7
48
49 # Spread additional padding evenly around the terminal content.
50 #dynamic_padding: false
51
52 # Window decorations
53 #
54 # Values for `decorations`:
55 # - full: Borders and title bar
56 # - none: Neither borders nor title bar
57 #
58 # Values for `decorations` (macOS only):
59 # - transparent: Title bar, transparent background and title bar buttons
60 # - buttonless: Title bar, transparent background, but no title bar buttons
61 #decorations: full
62
63 # Startup Mode (changes require restart)
64 #
65 # Values for `startup_mode`:
66 # - Windowed
67 # - Maximized
68 # - Fullscreen
69 #
70 # Values for `startup_mode` (macOS only):
71 # - SimpleFullscreen
72 startup_mode: Maximized
73
74 # Window title
75 #title: Alacritty
76
77 # Allow terminal applications to change Alacritty's window title.
78 #dynamic_title: true
79
80 # Window class (Linux/BSD only):
81 #class:
82 # Application instance name
83 #instance: Alacritty
84 # General application class
85 #general: Alacritty
86
87 # GTK theme variant (Linux/BSD only)
88 #
89 # Override the variant of the GTK theme. Commonly supported values are `dark` and `light`.
90 # Set this to `None` to use the default theme variant.
91 #gtk_theme_variant: None
92
93#scrolling:
94 # Maximum number of lines in the scrollback buffer.
95 # Specifying '0' will disable scrolling.
96 #history: 10000
97
98 # Scrolling distance multiplier.
99 #multiplier: 3
100
101# Font configuration
102font:
103 # Normal (roman) font face
104 normal:
105 # Font family
106 #
107 # Default:
108 # - (macOS) Menlo
109 # - (Linux/BSD) monospace
110 # - (Windows) Consolas
111 family: JetBrains Mono
112
113 # The `style` can be specified to pick a specific face.
114 style: Regular
115
116 # Bold font face
117 bold:
118 # Font family
119 #
120 # If the bold family is not specified, it will fall back to the
121 # value specified for the normal font.
122 family: JetBrainsMono
123
124 # The `style` can be specified to pick a specific face.
125 style: Bold
126
127 # Italic font face
128 italic:
129 # Font family
130 #
131 # If the italic family is not specified, it will fall back to the
132 # value specified for the normal font.
133 family: JetBrainsMono
134
135 # The `style` can be specified to pick a specific face.
136 style: Italic
137
138 # Bold italic font face
139 bold_italic:
140 # Font family
141 #
142 # If the bold italic family is not specified, it will fall back to the
143 # value specified for the normal font.
144 family: JetBrainsMono
145
146 # The `style` can be specified to pick a specific face.
147 style: Bold Italic
148
149 # Point size
150 size: 11.0
151
152 # Offset is the extra space around each character. `offset.y` can be thought of
153 # as modifying the line spacing, and `offset.x` as modifying the letter spacing.
154 #offset:
155 # x: 0
156 # y: 0
157
158 # Glyph offset determines the locations of the glyphs within their cells with
159 # the default being at the bottom. Increasing `x` moves the glyph to the right,
160 # increasing `y` moves the glyph upward.
161 #glyph_offset:
162 # x: 0
163 # y: 0
164
165 # Thin stroke font rendering (macOS only)
166 #
167 # Thin strokes are suitable for retina displays, but for non-retina screens
168 # it is recommended to set `use_thin_strokes` to `false`.
169 #use_thin_strokes: true
170
171# If `true`, bold text is drawn using the bright color variants.
172# draw_bold_text_with_bright_colors: false
173
174# manual-rbow
175colors:
176 # Default colors
177 primary:
178 background: '#19191a'
179 foreground: '#cadcde'
180
181 # Normal colors
182 normal:
183 black: '#393838'
184 red: '#c74444'
185 green: '#7f9848'
186 yellow: '#d7a06d'
187 blue: '#4e96d5'
188 magenta: '#bc5fa7'
189 cyan: '#55b795'
190 white: '#c3b2f7'
191
192 # Bright colors
193 bright:
194 black: '#5a514b'
195 red: '#ed7c68'
196 green: '#c7ea76'
197 yellow: '#ffdb9d'
198 blue: '#a6d5fe'
199 magenta: '#edbbe9'
200 cyan: '#7fe2c5'
201 white: '#e2d6ff'
202
203# old-theme (hybrid by w0ng)
204# colors:
205# # Default colors
206# primary:
207# background: '0x1d1f21'
208# foreground: '0xc5c8c6'
209#
210# # Normal colors
211# normal:
212# black: '#282a2e'
213# red: '#a54242'
214# green: '#8c9440'
215# yellow: '#de935f'
216# blue: '#5f819d'
217# magenta: '#85678f'
218# cyan: '#5e8d87'
219# white: '#707880'
220#
221# # Bright colors
222# bright:
223# black: '#373b41'
224# red: '#cc6666'
225# green: '#b5bd68'
226# yellow: '#f0c674'
227# blue: '#81a2be'
228# magenta: '#b294bb'
229# cyan: '#8abeb7'
230# white: '#c5c8c6'
231
232# Colors (Tomorrow Night)
233#colors:
234 # Default colors
235 #primary:
236 # background: '#1d1f21'
237 # foreground: '#c5c8c6'
238
239 # Bright and dim foreground colors
240 #
241 # The dimmed foreground color is calculated automatically if it is not present.
242 # If the bright foreground color is not set, or `draw_bold_text_with_bright_colors`
243 # is `false`, the normal foreground color will be used.
244 #dim_foreground: '#828482'
245 #bright_foreground: '#eaeaea'
246
247 # Cursor colors
248 #
249 # Colors which should be used to draw the terminal cursor.
250 #
251 # Allowed values are CellForeground and CellBackground, which reference the
252 # affected cell, or hexadecimal colors like #ff00ff.
253 #cursor:
254 # text: CellBackground
255 # cursor: CellForeground
256
257 # Vi mode cursor colors
258 #
259 # Colors for the cursor when the vi mode is active.
260 #
261 # Allowed values are CellForeground and CellBackground, which reference the
262 # affected cell, or hexadecimal colors like #ff00ff.
263 #vi_mode_cursor:
264 # text: CellBackground
265 # cursor: CellForeground
266
267 # Selection colors
268 #
269 # Colors which should be used to draw the selection area.
270 #
271 # Allowed values are CellForeground and CellBackground, which reference the
272 # affected cell, or hexadecimal colors like #ff00ff.
273 #selection:
274 # text: CellBackground
275 # background: CellForeground
276
277 # Search colors
278 #
279 # Colors used for the search bar and match highlighting.
280 #search:
281 # Allowed values are CellForeground and CellBackground, which reference the
282 # affected cell, or hexadecimal colors like #ff00ff.
283 #matches:
284 # foreground: '#000000'
285 # background: '#ffffff'
286
287 #bar:
288 # background: '#c5c8c6'
289 # foreground: '#1d1f21'
290
291 # Normal colors
292 #normal:
293 # black: '#1d1f21'
294 # red: '#cc6666'
295 # green: '#b5bd68'
296 # yellow: '#f0c674'
297 # blue: '#81a2be'
298 # magenta: '#b294bb'
299 # cyan: '#8abeb7'
300 # white: '#c5c8c6'
301
302 # Bright colors
303 #bright:
304 # black: '#666666'
305 # red: '#d54e53'
306 # green: '#b9ca4a'
307 # yellow: '#e7c547'
308 # blue: '#7aa6da'
309 # magenta: '#c397d8'
310 # cyan: '#70c0b1'
311 # white: '#eaeaea'
312
313 # Dim colors
314 #
315 # If the dim colors are not set, they will be calculated automatically based
316 # on the `normal` colors.
317 #dim:
318 # black: '#131415'
319 # red: '#864343'
320 # green: '#777c44'
321 # yellow: '#9e824c'
322 # blue: '#556a7d'
323 # magenta: '#75617b'
324 # cyan: '#5b7d78'
325 # white: '#828482'
326
327 # Indexed Colors
328 #
329 # The indexed colors include all colors from 16 to 256.
330 # When these are not set, they're filled with sensible defaults.
331 #
332 # Example:
333 # `- { index: 16, color: '#ff00ff' }`
334 #
335 #indexed_colors: []
336
337# Bell
338#
339# The bell is rung every time the BEL control character is received.
340#bell:
341 # Visual Bell Animation
342 #
343 # Animation effect for flashing the screen when the visual bell is rung.
344 #
345 # Values for `animation`:
346 # - Ease
347 # - EaseOut
348 # - EaseOutSine
349 # - EaseOutQuad
350 # - EaseOutCubic
351 # - EaseOutQuart
352 # - EaseOutQuint
353 # - EaseOutExpo
354 # - EaseOutCirc
355 # - Linear
356 #animation: EaseOutExpo
357
358 # Duration of the visual bell flash in milliseconds. A `duration` of `0` will
359 # disable the visual bell animation.
360 #duration: 0
361
362 # Visual bell animation color.
363 #color: '#ffffff'
364
365 # Bell Command
366 #
367 # This program is executed whenever the bell is rung.
368 #
369 # When set to `command: None`, no command will be executed.
370 #
371 # Example:
372 # command:
373 # program: notify-send
374 # args: ["Hello, World!"]
375 #
376 #command: None
377
378# Background opacity
379#
380# Window opacity as a floating point number from `0.0` to `1.0`.
381# The value `0.0` is completely transparent and `1.0` is opaque.
382#background_opacity: 1.0
383
384#selection:
385 # This string contains all characters that are used as separators for "semantic words" in Alacritty.
386 #semantic_escape_chars: ",│`|:\"' ()[]{}<>\t"
387
388 # When set to `true`, selected text will be copied to the primary clipboard.
389 #save_to_clipboard: false
390
391#cursor:
392 # Cursor style
393 #
394 # Values for `style`:
395 # - â–‡ Block
396 # - _ Underline
397 # - | Beam
398 #style: Block
399
400 # Vi mode cursor style
401 #
402 # If the vi mode cursor style is `None` or not specified, it will fall back to
403 # the style of the active value of the normal cursor.
404 #
405 # See `cursor.style` for available options.
406 #vi_mode_style: None
407
408 # If this is `true`, the cursor will be rendered as a hollow box when the
409 # window is not focused.
410 #unfocused_hollow: true
411
412 # Thickness of the cursor relative to the cell width as floating point number
413 # from `0.0` to `1.0`.
414 #thickness: 0.15
415
416# Live config reload (changes require restart)
417#live_config_reload: true
418
419# Shell
420#
421# You can set `shell.program` to the path of your favorite shell, e.g. `/bin/fish`.
422# Entries in `shell.args` are passed unmodified as arguments to the shell.
423#
424# Default:
425# - (macOS) /bin/bash --login
426# - (Linux/BSD) user login shell
427# - (Windows) powershell
428#shell:
429# program: /bin/bash
430# args:
431# - --login
432
433# Startup directory
434#
435# Directory the shell is started in. If this is unset, or `None`, the working
436# directory of the parent process will be used.
437#working_directory: None
438
439# WinPTY backend (Windows only)
440#
441# Alacritty defaults to using the newer ConPTY backend if it is available,
442# since it resolves a lot of bugs and is quite a bit faster. If it is not
443# available, the WinPTY backend will be used instead.
444#
445# Setting this option to `true` makes Alacritty use the legacy WinPTY backend,
446# even if the ConPTY backend is available.
447#winpty_backend: false
448
449# Send ESC (\x1b) before characters when alt is pressed.
450#alt_send_esc: true
451
452#mouse:
453 # Click settings
454 #
455 # The `double_click` and `triple_click` settings control the time
456 # alacritty should wait for accepting multiple clicks as one double
457 # or triple click.
458 #double_click: { threshold: 300 }
459 #triple_click: { threshold: 300 }
460
461 # If this is `true`, the cursor is temporarily hidden when typing.
462 #hide_when_typing: false
463
464 #url:
465 # URL launcher
466 #
467 # This program is executed when clicking on a text which is recognized as a URL.
468 # The URL is always added to the command as the last parameter.
469 #
470 # When set to `launcher: None`, URL launching will be disabled completely.
471 #
472 # Default:
473 # - (macOS) open
474 # - (Linux/BSD) xdg-open
475 # - (Windows) explorer
476 #launcher:
477 # program: xdg-open
478 # args: []
479
480 # URL modifiers
481 #
482 # These are the modifiers that need to be held down for opening URLs when clicking
483 # on them. The available modifiers are documented in the key binding section.
484 #modifiers: None
485
486# Mouse bindings
487#
488# Mouse bindings are specified as a list of objects, much like the key
489# bindings further below.
490#
491# To trigger mouse bindings when an application running within Alacritty captures the mouse, the
492# `Shift` modifier is automatically added as a requirement.
493#
494# Each mouse binding will specify a:
495#
496# - `mouse`:
497#
498# - Middle
499# - Left
500# - Right
501# - Numeric identifier such as `5`
502#
503# - `action` (see key bindings)
504#
505# And optionally:
506#
507# - `mods` (see key bindings)
508#mouse_bindings:
509# - { mouse: Middle, action: PasteSelection }
510
511# Key bindings
512#
513# Key bindings are specified as a list of objects. For example, this is the
514# default paste binding:
515#
516# `- { key: V, mods: Control|Shift, action: Paste }`
517#
518# Each key binding will specify a:
519#
520# - `key`: Identifier of the key pressed
521#
522# - A-Z
523# - F1-F24
524# - Key0-Key9
525#
526# A full list with available key codes can be found here:
527# https://docs.rs/glutin/*/glutin/event/enum.VirtualKeyCode.html#variants
528#
529# Instead of using the name of the keys, the `key` field also supports using
530# the scancode of the desired key. Scancodes have to be specified as a
531# decimal number. This command will allow you to display the hex scancodes
532# for certain keys:
533#
534# `showkey --scancodes`.
535#
536# Then exactly one of:
537#
538# - `chars`: Send a byte sequence to the running application
539#
540# The `chars` field writes the specified string to the terminal. This makes
541# it possible to pass escape sequences. To find escape codes for bindings
542# like `PageUp` (`"\x1b[5~"`), you can run the command `showkey -a` outside
543# of tmux. Note that applications use terminfo to map escape sequences back
544# to keys. It is therefore required to update the terminfo when changing an
545# escape sequence.
546#
547# - `action`: Execute a predefined action
548#
549# - ToggleViMode
550# - SearchForward
551# Start searching toward the right of the search origin.
552# - SearchBackward
553# Start searching toward the left of the search origin.
554# - Copy
555# - Paste
556# - IncreaseFontSize
557# - DecreaseFontSize
558# - ResetFontSize
559# - ScrollPageUp
560# - ScrollPageDown
561# - ScrollHalfPageUp
562# - ScrollHalfPageDown
563# - ScrollLineUp
564# - ScrollLineDown
565# - ScrollToTop
566# - ScrollToBottom
567# - ClearHistory
568# Remove the terminal's scrollback history.
569# - Hide
570# Hide the Alacritty window.
571# - Minimize
572# Minimize the Alacritty window.
573# - Quit
574# Quit Alacritty.
575# - ToggleFullscreen
576# - SpawnNewInstance
577# Spawn a new instance of Alacritty.
578# - ClearLogNotice
579# Clear Alacritty's UI warning and error notice.
580# - ClearSelection
581# Remove the active selection.
582# - ReceiveChar
583# - None
584#
585# (`mode: Vi` only):
586# - Open
587# Open URLs at the cursor location with the launcher configured in `url.launcher`.
588# - Up
589# Move the vi mode cursor up by one line.
590# - Down
591# Move the vi mode cursor down by one line.
592# - Left
593# Move the vi mode cursor left by one character.
594# - Right
595# Move the vi mode cursor right by one character.
596# - First
597# Move the vi mode cursor to the start of the line, searching across newlines if it is already at the beginning.
598# - Last
599# Move the vi mode cursor to the end of the line, searching across newlines if it is already at the end.
600# - FirstOccupied
601# Move the vi mode cursor to the first non-empty cell in this line, searching across newlines if it is already at the first one.
602# - High
603# Move the vi mode cursor to the top of the screen.
604# - Middle
605# Move the vi mode cursor to the middle of the screen.
606# - Low
607# Move the vi mode cursor to the bottom of the screen.
608# - SemanticLeft
609# Move the vi mode cursor to the start of the previous semantically separated word.
610# - SemanticRight
611# Move the vi mode cursor to the start of the next semantically separated word.
612# - SemanticLeftEnd
613# Move the vi mode cursor to the end of the previous semantically separated word.
614# - SemanticRightEnd
615# Move the vi mode cursor to the end of the next semantically separated word.
616# - WordLeft
617# Move the vi mode cursor to the start of the previous whitespace separated word.
618# - WordRight
619# Move the vi mode cursor to the start of the next whitespace separated word.
620# - WordLeftEnd
621# Move the vi mode cursor to the end of the previous whitespace separated word.
622# - WordRightEnd
623# Move the vi mode cursor to the end of the next whitespace separated word.
624# - Bracket
625# Move the vi mode cursor to the next character that matches the bracket at the cursor's
626# current location.
627# - ToggleNormalSelection
628# - ToggleLineSelection
629# - ToggleBlockSelection
630# - ToggleSemanticSelection
631# Toggle semantic selection based on `selection.semantic_escape_chars`.
632# - SearchNext
633# Jump to the beginning of the next match.
634# - SearchPrevious
635# Jump to the beginning of the previous match.
636# - SearchStart
637# Jump to the next start of a match to the left of the vi mode cursor.
638# - SearchEnd
639# Jump to the next end of a match to the left of the vi mode cursor.
640#
641# (macOS only):
642# - ToggleSimpleFullscreen
643# Enter fullscreen without occupying another space.
644#
645# (Linux/BSD only):
646# - CopySelection
647# Copy from the selection buffer.
648# - PasteSelection
649# Paste from the selection buffer.
650#
651# - `command`: Fork and execute a specified command plus arguments
652#
653# The `command` field must be a map containing a `program` string and an
654# `args` array of command line parameter strings. For example:
655# `{ program: "alacritty", args: ["-e", "vttest"] }`
656#
657# And optionally:
658#
659# - `mods`: Key modifiers to filter binding actions
660#
661# - Command
662# - Control
663# - Option
664# - Super
665# - Shift
666# - Alt
667#
668# Multiple `mods` can be combined using `|` like this:
669# `mods: Control|Shift`.
670# Whitespace and capitalization are relevant and must match the example.
671#
672# - `mode`: Indicate a binding for only specific terminal reported modes
673#
674# This is mainly used to send applications the correct escape sequences
675# when in different modes.
676#
677# - AppCursor
678# - AppKeypad
679# - Alt
680# - Vi
681#
682# A `~` operator can be used before a mode to apply the binding whenever
683# the mode is *not* active, e.g. `~Alt`.
684#
685# Bindings are always filled by default, but will be replaced when a new
686# binding with the same triggers is defined. To unset a default binding, it can
687# be mapped to the `ReceiveChar` action. Alternatively, you can use `None` for
688# a no-op if you do not wish to receive input characters for that binding.
689#
690# If the same trigger is assigned to multiple actions, all of them are executed
691# in the order they were defined in.
692#key_bindings:
693 #- { key: Paste, action: Paste }
694 #- { key: Copy, action: Copy }
695 #- { key: L, mods: Control, action: ClearLogNotice }
696 #- { key: L, mods: Control, mode: ~Vi, chars: "\x0c" }
697 #- { key: PageUp, mods: Shift, mode: ~Alt, action: ScrollPageUp, }
698 #- { key: PageDown, mods: Shift, mode: ~Alt, action: ScrollPageDown }
699 #- { key: Home, mods: Shift, mode: ~Alt, action: ScrollToTop, }
700 #- { key: End, mods: Shift, mode: ~Alt, action: ScrollToBottom }
701
702 # Vi Mode
703 #- { key: Space, mods: Shift|Control, mode: Vi, action: ScrollToBottom }
704 #- { key: Space, mods: Shift|Control, action: ToggleViMode }
705 #- { key: Escape, mode: Vi, action: ClearSelection }
706 #- { key: I, mode: Vi, action: ScrollToBottom }
707 #- { key: I, mode: Vi, action: ToggleViMode }
708 #- { key: C, mods: Control, mode: Vi, action: ToggleViMode }
709 #- { key: Y, mods: Control, mode: Vi, action: ScrollLineUp }
710 #- { key: E, mods: Control, mode: Vi, action: ScrollLineDown }
711 #- { key: G, mode: Vi, action: ScrollToTop }
712 #- { key: G, mods: Shift, mode: Vi, action: ScrollToBottom }
713 #- { key: B, mods: Control, mode: Vi, action: ScrollPageUp }
714 #- { key: F, mods: Control, mode: Vi, action: ScrollPageDown }
715 #- { key: U, mods: Control, mode: Vi, action: ScrollHalfPageUp }
716 #- { key: D, mods: Control, mode: Vi, action: ScrollHalfPageDown }
717 #- { key: Y, mode: Vi, action: Copy }
718 #- { key: Y, mode: Vi, action: ClearSelection }
719 #- { key: Copy, mode: Vi, action: ClearSelection }
720 #- { key: V, mode: Vi, action: ToggleNormalSelection }
721 #- { key: V, mods: Shift, mode: Vi, action: ToggleLineSelection }
722 #- { key: V, mods: Control, mode: Vi, action: ToggleBlockSelection }
723 #- { key: V, mods: Alt, mode: Vi, action: ToggleSemanticSelection }
724 #- { key: Return, mode: Vi, action: Open }
725 #- { key: K, mode: Vi, action: Up }
726 #- { key: J, mode: Vi, action: Down }
727 #- { key: H, mode: Vi, action: Left }
728 #- { key: L, mode: Vi, action: Right }
729 #- { key: Up, mode: Vi, action: Up }
730 #- { key: Down, mode: Vi, action: Down }
731 #- { key: Left, mode: Vi, action: Left }
732 #- { key: Right, mode: Vi, action: Right }
733 #- { key: Key0, mode: Vi, action: First }
734 #- { key: Key4, mods: Shift, mode: Vi, action: Last }
735 #- { key: Key6, mods: Shift, mode: Vi, action: FirstOccupied }
736 #- { key: H, mods: Shift, mode: Vi, action: High }
737 #- { key: M, mods: Shift, mode: Vi, action: Middle }
738 #- { key: L, mods: Shift, mode: Vi, action: Low }
739 #- { key: B, mode: Vi, action: SemanticLeft }
740 #- { key: W, mode: Vi, action: SemanticRight }
741 #- { key: E, mode: Vi, action: SemanticRightEnd }
742 #- { key: B, mods: Shift, mode: Vi, action: WordLeft }
743 #- { key: W, mods: Shift, mode: Vi, action: WordRight }
744 #- { key: E, mods: Shift, mode: Vi, action: WordRightEnd }
745 #- { key: Key5, mods: Shift, mode: Vi, action: Bracket }
746 #- { key: Slash, mode: Vi, action: SearchForward }
747 #- { key: Slash, mods: Shift, mode: Vi, action: SearchBackward }
748 #- { key: N, mode: Vi, action: SearchNext }
749 #- { key: N, mods: Shift, mode: Vi, action: SearchPrevious }
750
751 # (Windows, Linux, and BSD only)
752 #- { key: V, mods: Control|Shift, action: Paste }
753 #- { key: C, mods: Control|Shift, action: Copy }
754 #- { key: F, mods: Control|Shift, action: SearchForward }
755 #- { key: B, mods: Control|Shift, action: SearchBackward }
756 #- { key: C, mods: Control|Shift, mode: Vi, action: ClearSelection }
757 #- { key: Insert, mods: Shift, action: PasteSelection }
758 #- { key: Key0, mods: Control, action: ResetFontSize }
759 #- { key: Equals, mods: Control, action: IncreaseFontSize }
760 #- { key: Plus, mods: Control, action: IncreaseFontSize }
761 #- { key: NumpadAdd, mods: Control, action: IncreaseFontSize }
762 #- { key: Minus, mods: Control, action: DecreaseFontSize }
763 #- { key: NumpadSubtract, mods: Control, action: DecreaseFontSize }
764
765 # (Windows only)
766 #- { key: Return, mods: Alt, action: ToggleFullscreen }
767
768 # (macOS only)
769 #- { key: K, mods: Command, mode: ~Vi, chars: "\x0c" }
770 #- { key: Key0, mods: Command, action: ResetFontSize }
771 #- { key: Equals, mods: Command, action: IncreaseFontSize }
772 #- { key: Plus, mods: Command, action: IncreaseFontSize }
773 #- { key: NumpadAdd, mods: Command, action: IncreaseFontSize }
774 #- { key: Minus, mods: Command, action: DecreaseFontSize }
775 #- { key: NumpadSubtract, mods: Command, action: DecreaseFontSize }
776 #- { key: K, mods: Command, action: ClearHistory }
777 #- { key: V, mods: Command, action: Paste }
778 #- { key: C, mods: Command, action: Copy }
779 #- { key: C, mods: Command, mode: Vi, action: ClearSelection }
780 #- { key: H, mods: Command, action: Hide }
781 #- { key: M, mods: Command, action: Minimize }
782 #- { key: Q, mods: Command, action: Quit }
783 #- { key: W, mods: Command, action: Quit }
784 #- { key: N, mods: Command, action: SpawnNewInstance }
785 #- { key: F, mods: Command|Control, action: ToggleFullscreen }
786 #- { key: F, mods: Command, action: SearchForward }
787 #- { key: B, mods: Command, action: SearchBackward }
788
789#debug:
790 # Display the time it takes to redraw each frame.
791 #render_timer: false
792
793 # Keep the log file after quitting Alacritty.
794 #persistent_logging: false
795
796 # Log level
797 #
798 # Values for `log_level`:
799 # - None
800 # - Error
801 # - Warn
802 # - Info
803 # - Debug
804 # - Trace
805 #log_level: Warn
806
807 # Print all received window events.
808 #print_events: false