2022-05-28 19:11:45 +02:00
parent e3fdc9ec65
commit 4d6e2bccce

View File

@@ -63,6 +63,12 @@ window:
# - buttonless: Title bar, transparent background and no title bar buttons # - buttonless: Title bar, transparent background and no title bar buttons
#decorations: full #decorations: full
# Background opacity
#
# Window opacity as a floating point number from `0.0` to `1.0`.
# The value `0.0` is completely transparent and `1.0` is opaque.
#opacity: 1.0
# Startup Mode (changes require restart) # Startup Mode (changes require restart)
# #
# Values for `startup_mode`: # Values for `startup_mode`:
@@ -172,6 +178,13 @@ font:
# it is recommended to set `use_thin_strokes` to `false`. # it is recommended to set `use_thin_strokes` to `false`.
#use_thin_strokes: true #use_thin_strokes: true
# Use built-in font for box drawing characters.
#
# If `true`, Alacritty will use a custom built-in font for box drawing
# characters (Unicode points 2500 - 259f).
#
#builtin_box_drawing: true
# If `true`, bold text is drawn using the bright color variants. # If `true`, bold text is drawn using the bright color variants.
#draw_bold_text_with_bright_colors: false #draw_bold_text_with_bright_colors: false
@@ -312,6 +325,13 @@ colors:
# #
#indexed_colors: [] #indexed_colors: []
# Transparent cell backgrounds
#
# Whether or not `window.opacity` applies to all cell backgrounds or only to
# the default background. When set to `true` all cells will be transparent
# regardless of their background color.
#transparent_background_colors: false
# Bell # Bell
# #
# The bell is rung every time the BEL control character is received. # The bell is rung every time the BEL control character is received.
@@ -353,12 +373,6 @@ colors:
# #
#command: None #command: None
# Background opacity
#
# Window opacity as a floating point number from `0.0` to `1.0`.
# The value `0.0` is completely transparent and `1.0` is opaque.
#background_opacity: 1.0
#selection: #selection:
# This string contains all characters that are used as separators for # This string contains all characters that are used as separators for
# "semantic words" in Alacritty. # "semantic words" in Alacritty.
@@ -433,6 +447,9 @@ live_config_reload: false
# Send ESC (\x1b) before characters when alt is pressed. # Send ESC (\x1b) before characters when alt is pressed.
#alt_send_esc: true #alt_send_esc: true
# Offer IPC using `alacritty msg` (unix only)
#ipc_socket: true
mouse: mouse:
# Click settings # Click settings
# #
@@ -507,13 +524,20 @@ hints:
# - Right # - Right
# - Numeric identifier such as `5` # - Numeric identifier such as `5`
# #
# - `action` (see key bindings) # - `action` (see key bindings for actions not exclusive to mouse mode)
#
# - Mouse exclusive actions:
#
# - ExpandSelection
# Expand the selection to the current mouse cursor location.
# #
# And optionally: # And optionally:
# #
# - `mods` (see key bindings) # - `mods` (see key bindings)
#mouse_bindings: #mouse_bindings:
# - { mouse: Middle, action: PasteSelection } # - { mouse: Right, action: ExpandSelection }
# - { mouse: Right, mods: Control, action: ExpandSelection }
# - { mouse: Middle, mode: ~Vi, action: PasteSelection }
# Key bindings # Key bindings
# #
@@ -582,6 +606,8 @@ hints:
# - ToggleFullscreen # - ToggleFullscreen
# - SpawnNewInstance # - SpawnNewInstance
# Spawn a new instance of Alacritty. # Spawn a new instance of Alacritty.
# - CreateNewWindow
# Create a new Alacritty window from the current process.
# - ClearLogNotice # - ClearLogNotice
# Clear Alacritty's UI warning and error notice. # Clear Alacritty's UI warning and error notice.
# - ClearSelection # - ClearSelection