Update alacritty config to recent version
This commit is contained in:
@@ -67,6 +67,11 @@ window:
|
|||||||
|
|
||||||
# Window class (Linux only):
|
# Window class (Linux only):
|
||||||
#class: Alacritty
|
#class: Alacritty
|
||||||
|
# GTK theme variant (Linux only)
|
||||||
|
#
|
||||||
|
# Override the variant of the GTK theme. Commonly supported values are `dark` and `light`.
|
||||||
|
# Set this to `None` to use the default theme variant.
|
||||||
|
gtk_theme_variant: None
|
||||||
|
|
||||||
scrolling:
|
scrolling:
|
||||||
# Maximum number of lines in the scrollback buffer.
|
# Maximum number of lines in the scrollback buffer.
|
||||||
@@ -107,16 +112,26 @@ font:
|
|||||||
style: Regular
|
style: Regular
|
||||||
|
|
||||||
# Bold font face
|
# Bold font face
|
||||||
bold:
|
#bold:
|
||||||
family: xos4 Terminus
|
# Font family
|
||||||
|
#
|
||||||
|
# If the bold family is not specified, it will fall back to the
|
||||||
|
# value specified for the normal font.
|
||||||
|
#family: monospace
|
||||||
|
|
||||||
# The `style` can be specified to pick a specific face.
|
# The `style` can be specified to pick a specific face.
|
||||||
style: Bold
|
#style: Bold
|
||||||
|
|
||||||
# Italic font face
|
# Italic font face
|
||||||
italic:
|
#italic:
|
||||||
family: xos4 Terminus
|
# Font family
|
||||||
|
#
|
||||||
|
# If the italic family is not specified, it will fall back to the
|
||||||
|
# value specified for the normal font.
|
||||||
|
#family: monospace
|
||||||
|
|
||||||
# The `style` can be specified to pick a specific face.
|
# The `style` can be specified to pick a specific face.
|
||||||
style: Italic
|
#style: Italic
|
||||||
|
|
||||||
# Point size
|
# Point size
|
||||||
size: 8.0
|
size: 8.0
|
||||||
@@ -263,60 +278,8 @@ visual_bell:
|
|||||||
# The value `0.0` is completely transparent and `1.0` is opaque.
|
# The value `0.0` is completely transparent and `1.0` is opaque.
|
||||||
background_opacity: 1.0
|
background_opacity: 1.0
|
||||||
|
|
||||||
# Mouse bindings
|
|
||||||
#
|
|
||||||
# Available fields:
|
|
||||||
# - mouse
|
|
||||||
# - action
|
|
||||||
# - mods (optional)
|
|
||||||
#
|
|
||||||
# Values for `mouse`:
|
|
||||||
# - Middle
|
|
||||||
# - Left
|
|
||||||
# - Right
|
|
||||||
# - Numeric identifier such as `5`
|
|
||||||
#
|
|
||||||
# All available `mods` and `action` values are documented in the key binding
|
|
||||||
# section.
|
|
||||||
mouse_bindings:
|
|
||||||
- { mouse: Middle, action: PasteSelection }
|
|
||||||
|
|
||||||
mouse:
|
|
||||||
# Click settings
|
|
||||||
#
|
|
||||||
# The `double_click` and `triple_click` settings control the time
|
|
||||||
# alacritty should wait for accepting multiple clicks as one double
|
|
||||||
# or triple click.
|
|
||||||
double_click: { threshold: 300 }
|
|
||||||
triple_click: { threshold: 300 }
|
|
||||||
|
|
||||||
# If this is `true`, the cursor is temporarily hidden when typing.
|
|
||||||
hide_when_typing: false
|
|
||||||
|
|
||||||
url:
|
|
||||||
# URL launcher
|
|
||||||
#
|
|
||||||
# This program is executed when clicking on a text which is recognized as a URL.
|
|
||||||
# The URL is always added to the command as the last parameter.
|
|
||||||
#
|
|
||||||
# When set to `None`, URL launching will be disabled completely.
|
|
||||||
#
|
|
||||||
# Default:
|
|
||||||
# - (macOS) open
|
|
||||||
# - (Linux) xdg-open
|
|
||||||
# - (Windows) explorer
|
|
||||||
launcher:
|
|
||||||
program: xdg-open
|
|
||||||
# args: []
|
|
||||||
|
|
||||||
# URL modifiers
|
|
||||||
#
|
|
||||||
# These are the modifiers that need to be held down for opening URLs when clicking
|
|
||||||
# on them. The available modifiers are documented in the key binding section.
|
|
||||||
modifiers: Control
|
|
||||||
|
|
||||||
selection:
|
selection:
|
||||||
semantic_escape_chars: ",│`|:\"' ()[]{}<>"
|
semantic_escape_chars: ",│`|:\"' ()[]{}<>\t"
|
||||||
|
|
||||||
# When set to `true`, selected text will be copied to the primary clipboard.
|
# When set to `true`, selected text will be copied to the primary clipboard.
|
||||||
save_to_clipboard: false
|
save_to_clipboard: false
|
||||||
@@ -398,66 +361,103 @@ debug:
|
|||||||
# Record all characters and escape sequences as test data.
|
# Record all characters and escape sequences as test data.
|
||||||
ref_test: false
|
ref_test: false
|
||||||
|
|
||||||
|
mouse:
|
||||||
|
# Click settings
|
||||||
|
#
|
||||||
|
# The `double_click` and `triple_click` settings control the time
|
||||||
|
# alacritty should wait for accepting multiple clicks as one double
|
||||||
|
# or triple click.
|
||||||
|
double_click: { threshold: 300 }
|
||||||
|
triple_click: { threshold: 300 }
|
||||||
|
|
||||||
|
# If this is `true`, the cursor is temporarily hidden when typing.
|
||||||
|
hide_when_typing: false
|
||||||
|
|
||||||
|
url:
|
||||||
|
# URL launcher
|
||||||
|
#
|
||||||
|
# This program is executed when clicking on a text which is recognized as a URL.
|
||||||
|
# The URL is always added to the command as the last parameter.
|
||||||
|
#
|
||||||
|
# When set to `None`, URL launching will be disabled completely.
|
||||||
|
#
|
||||||
|
# Default:
|
||||||
|
# - (macOS) open
|
||||||
|
# - (Linux) xdg-open
|
||||||
|
# - (Windows) explorer
|
||||||
|
launcher:
|
||||||
|
program: xdg-open
|
||||||
|
# args: []
|
||||||
|
|
||||||
|
# URL modifiers
|
||||||
|
#
|
||||||
|
# These are the modifiers that need to be held down for opening URLs when clicking
|
||||||
|
# on them. The available modifiers are documented in the key binding section.
|
||||||
|
modifiers: Control
|
||||||
|
|
||||||
|
# Mouse bindings
|
||||||
|
#
|
||||||
|
# Mouse bindings are specified as a list of objects, much like the key
|
||||||
|
# bindings further below.
|
||||||
|
#
|
||||||
|
# Each mouse binding will specify a:
|
||||||
|
#
|
||||||
|
# - `mouse`:
|
||||||
|
#
|
||||||
|
# - Middle
|
||||||
|
# - Left
|
||||||
|
# - Right
|
||||||
|
# - Numeric identifier such as `5`
|
||||||
|
#
|
||||||
|
# - `action` (see key bindings)
|
||||||
|
#
|
||||||
|
# And optionally:
|
||||||
|
#
|
||||||
|
# - `mods` (see key bindings)
|
||||||
|
mouse_bindings:
|
||||||
|
- { mouse: Middle, action: PasteSelection }
|
||||||
|
|
||||||
# Key bindings
|
# Key bindings
|
||||||
#
|
#
|
||||||
# Key bindings are specified as a list of objects. Each binding will specify a
|
# Key bindings are specified as a list of objects. For example, this is the
|
||||||
# key and modifiers required to trigger it, terminal modes where the binding is
|
# default paste binding:
|
||||||
# applicable, and what should be done when the key binding fires. It can either
|
|
||||||
# send a byte sequence to the running application (`chars`), execute a
|
|
||||||
# predefined action (`action`) or fork and execute a specified command plus
|
|
||||||
# arguments (`command`).
|
|
||||||
#
|
#
|
||||||
# Bindings are always filled by default, but will be replaced when a new binding
|
|
||||||
# with the same triggers is defined. To unset a default binding, it can be
|
|
||||||
# mapped to the `None` action.
|
|
||||||
#
|
|
||||||
# Example:
|
|
||||||
# `- { key: V, mods: Control|Shift, action: Paste }`
|
# `- { key: V, mods: Control|Shift, action: Paste }`
|
||||||
#
|
#
|
||||||
# Available fields:
|
# Each key binding will specify a:
|
||||||
# - key
|
|
||||||
# - mods (optional)
|
|
||||||
# - chars | action | command (exactly one required)
|
|
||||||
# - mode (optional)
|
|
||||||
#
|
#
|
||||||
# Values for `key`:
|
# - `key`: Identifier of the key pressed
|
||||||
# - `A` -> `Z`
|
#
|
||||||
# - `F1` -> `F12`
|
# - A-Z
|
||||||
# - `Key1` -> `Key0`
|
# - F1-F12
|
||||||
|
# - Key0-Key9
|
||||||
#
|
#
|
||||||
# A full list with available key codes can be found here:
|
# A full list with available key codes can be found here:
|
||||||
# https://docs.rs/glutin/*/glutin/enum.VirtualKeyCode.html#variants
|
# https://docs.rs/glutin/*/glutin/enum.VirtualKeyCode.html#variants
|
||||||
#
|
#
|
||||||
# Instead of using the name of the keys, the `key` field also supports using
|
# Instead of using the name of the keys, the `key` field also supports using
|
||||||
# the scancode of the desired key. Scancodes have to be specified as a
|
# the scancode of the desired key. Scancodes have to be specified as a
|
||||||
# decimal number.
|
# decimal number. This command will allow you to display the hex scancodes
|
||||||
# This command will allow you to display the hex scancodes for certain keys:
|
# for certain keys:
|
||||||
# `showkey --scancodes`
|
|
||||||
#
|
#
|
||||||
# Values for `mods`:
|
# `showkey --scancodes`.
|
||||||
# - Command
|
|
||||||
# - Control
|
|
||||||
# - Option
|
|
||||||
# - Super
|
|
||||||
# - Shift
|
|
||||||
# - Alt
|
|
||||||
#
|
#
|
||||||
# Multiple `mods` can be combined using `|` like this: `mods: Control|Shift`.
|
# Then exactly one of:
|
||||||
# Whitespace and capitalization is relevant and must match the example.
|
#
|
||||||
|
# - `chars`: Send a byte sequence to the running application
|
||||||
#
|
#
|
||||||
# Values for `chars`:
|
|
||||||
# The `chars` field writes the specified string to the terminal. This makes
|
# The `chars` field writes the specified string to the terminal. This makes
|
||||||
# it possible to pass escape sequences.
|
# it possible to pass escape sequences. To find escape codes for bindings
|
||||||
# To find escape codes for bindings like `PageUp` ("\x1b[5~"), you can run
|
# like `PageUp` (`"\x1b[5~"`), you can run the command `showkey -a` outside
|
||||||
# the command `showkey -a` outside of tmux.
|
# of tmux. Note that applications use terminfo to map escape sequences back
|
||||||
# Note that applications use terminfo to map escape sequences back to
|
# to keys. It is therefore required to update the terminfo when changing an
|
||||||
# keys. It is therefore required to update the terminfo when
|
# escape sequence.
|
||||||
# changing an escape sequence.
|
|
||||||
#
|
#
|
||||||
# Values for `action`:
|
# - `action`: Execute a predefined action
|
||||||
|
#
|
||||||
|
# - Copy
|
||||||
# - Paste
|
# - Paste
|
||||||
# - PasteSelection
|
# - PasteSelection
|
||||||
# - Copy
|
|
||||||
# - IncreaseFontSize
|
# - IncreaseFontSize
|
||||||
# - DecreaseFontSize
|
# - DecreaseFontSize
|
||||||
# - ResetFontSize
|
# - ResetFontSize
|
||||||
@@ -470,36 +470,76 @@ debug:
|
|||||||
# - ClearHistory
|
# - ClearHistory
|
||||||
# - Hide
|
# - Hide
|
||||||
# - Quit
|
# - Quit
|
||||||
# - ClearLogNotice
|
|
||||||
# - SpawnNewInstance
|
|
||||||
# - ToggleFullscreen
|
# - ToggleFullscreen
|
||||||
|
# - SpawnNewInstance
|
||||||
|
# - ClearLogNotice
|
||||||
# - None
|
# - None
|
||||||
#
|
#
|
||||||
# Values for `action` (macOS only):
|
# (macOS only):
|
||||||
# - ToggleSimpleFullscreen: Enters fullscreen without occupying another space
|
# - ToggleSimpleFullscreen: Enters fullscreen without occupying another space
|
||||||
#
|
#
|
||||||
# Values for `command`:
|
# - `command`: Fork and execute a specified command plus arguments
|
||||||
# The `command` field must be a map containing a `program` string and
|
|
||||||
# an `args` array of command line parameter strings.
|
|
||||||
#
|
#
|
||||||
# Example:
|
# The `command` field must be a map containing a `program` string and an
|
||||||
# `command: { program: "alacritty", args: ["-e", "vttest"] }`
|
# `args` array of command line parameter strings. For example:
|
||||||
|
# `{ program: "alacritty", args: ["-e", "vttest"] }`
|
||||||
|
#
|
||||||
|
# And optionally:
|
||||||
|
#
|
||||||
|
# - `mods`: Key modifiers to filter binding actions
|
||||||
|
#
|
||||||
|
# - Command
|
||||||
|
# - Control
|
||||||
|
# - Option
|
||||||
|
# - Super
|
||||||
|
# - Shift
|
||||||
|
# - Alt
|
||||||
|
#
|
||||||
|
# Multiple `mods` can be combined using `|` like this:
|
||||||
|
# `mods: Control|Shift`.
|
||||||
|
# Whitespace and capitalization are relevant and must match the example.
|
||||||
|
#
|
||||||
|
# - `mode`: Indicate a binding for only specific terminal reported modes
|
||||||
|
#
|
||||||
|
# This is mainly used to send applications the correct escape sequences
|
||||||
|
# when in different modes.
|
||||||
#
|
#
|
||||||
# Values for `mode`:
|
|
||||||
# - ~AppCursor
|
|
||||||
# - AppCursor
|
# - AppCursor
|
||||||
# - ~AppKeypad
|
|
||||||
# - AppKeypad
|
# - AppKeypad
|
||||||
|
# - Alt
|
||||||
|
#
|
||||||
|
# A `~` operator can be used before a mode to apply the binding whenever
|
||||||
|
# the mode is *not* active, e.g. `~Alt`.
|
||||||
|
#
|
||||||
|
# Bindings are always filled by default, but will be replaced when a new
|
||||||
|
# binding with the same triggers is defined. To unset a default binding, it can
|
||||||
|
# be mapped to the `None` action.
|
||||||
key_bindings:
|
key_bindings:
|
||||||
# (Windows/Linux only)
|
# (Windows/Linux only)
|
||||||
- { key: V, mods: Control|Shift, action: Paste }
|
#- { key: V, mods: Control|Shift, action: Paste }
|
||||||
- { key: C, mods: Control|Shift, action: Copy }
|
#- { key: C, mods: Control|Shift, action: Copy }
|
||||||
- { key: Insert, mods: Shift, action: PasteSelection }
|
#- { key: Insert, mods: Shift, action: PasteSelection }
|
||||||
- { key: Key0, mods: Control, action: ResetFontSize }
|
#- { key: Key0, mods: Control, action: ResetFontSize }
|
||||||
- { key: Equals, mods: Control, action: ResetFontSize }
|
#- { key: Equals, mods: Control, action: IncreaseFontSize }
|
||||||
- { key: Add, mods: Control, action: IncreaseFontSize }
|
#- { key: Add, mods: Control, action: IncreaseFontSize }
|
||||||
- { key: Subtract, mods: Control, action: DecreaseFontSize }
|
#- { key: Subtract, mods: Control, action: DecreaseFontSize }
|
||||||
- { key: Minus, mods: Control, action: DecreaseFontSize }
|
#- { key: Minus, mods: Control, action: DecreaseFontSize }
|
||||||
|
#- { key: Return, mods: Alt, action: ToggleFullscreen }
|
||||||
|
|
||||||
|
# (macOS only)
|
||||||
|
#- { key: Key0, mods: Command, action: ResetFontSize }
|
||||||
|
#- { key: Equals, mods: Command, action: IncreaseFontSize }
|
||||||
|
#- { key: Add, mods: Command, action: IncreaseFontSize }
|
||||||
|
#- { key: Minus, mods: Command, action: DecreaseFontSize }
|
||||||
|
#- { key: K, mods: Command, action: ClearHistory }
|
||||||
|
#- { key: K, mods: Command, chars: "\x0c" }
|
||||||
|
#- { key: V, mods: Command, action: Paste }
|
||||||
|
#- { key: C, mods: Command, action: Copy }
|
||||||
|
#- { key: H, mods: Command, action: Hide }
|
||||||
|
#- { key: Q, mods: Command, action: Quit }
|
||||||
|
#- { key: W, mods: Command, action: Quit }
|
||||||
|
#- { key: F, mods: Command|Control, action: ToggleFullscreen }
|
||||||
|
|
||||||
- { key: N, mods: Control|Shift, action: SpawnNewInstance }
|
- { key: N, mods: Control|Shift, action: SpawnNewInstance }
|
||||||
- { key: Paste, action: Paste }
|
- { key: Paste, action: Paste }
|
||||||
- { key: Copy, action: Copy }
|
- { key: Copy, action: Copy }
|
||||||
|
|||||||
Reference in New Issue
Block a user