alacritty: Sync with latest version

This commit is contained in:
2020-08-16 00:30:48 +02:00
parent e96f053345
commit 2bb72d7103

View File

@@ -65,6 +65,9 @@
# Window title # Window title
#title: Alacritty #title: Alacritty
# Allow terminal applications to change Alacritty's window title.
#dynamic_title: true
# Window class (Linux/BSD only): # Window class (Linux/BSD only):
#class: #class:
# Application instance name # Application instance name
@@ -159,13 +162,6 @@ font:
# 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: true draw_bold_text_with_bright_colors: true
# Colors (Tomorrow Night)
#colors:
# Default colors
#primary:
#background: '0x000000'
#foreground: '0xfdff00'
# Colors (Gotham) # Colors (Gotham)
colors: colors:
# Default colors # Default colors
@@ -178,8 +174,8 @@ colors:
# The dimmed foreground color is calculated automatically if it is not present. # The dimmed foreground color is calculated automatically if it is not present.
# If the bright foreground color is not set, or `draw_bold_text_with_bright_colors` # If the bright foreground color is not set, or `draw_bold_text_with_bright_colors`
# is `false`, the normal foreground color will be used. # is `false`, the normal foreground color will be used.
#dim_foreground: '0x9a9a9a' #dim_foreground: '#828482'
#bright_foreground: '0xffffff' #bright_foreground: '#eaeaea'
# Cursor colors # Cursor colors
# #
@@ -206,64 +202,41 @@ colors:
# text: '#eaeaea' # text: '#eaeaea'
# background: '#404040' # background: '#404040'
# Normal colors # Normal colors
normal: normal:
black: '0x0a0f14' black: '0x0a0f14'
red: '0xc33027' red: '0xc33027'
green: '0x26a98b' green: '0x26998b'
yellow: '0xedb54b' yellow: '0xedb54b'
blue: '0x195465' blue: '0x195495'
magenta: '0x4e5165' magenta: '0x4e5165'
cyan: '0x33859d' cyan: '0x33859d'
white: '0x98d1ce' white: '0x98d1ce'
# Bright colors # Bright colors
bright: bright:
black: '0x10151b' black: '0x10355b'
red: '0xd26939' red: '0xdf6939'
green: '0x081f2d' green: '0x089f2d'
yellow: '0x245361' yellow: '0x645351'
blue: '0x093748' blue: '0x0937b8'
magenta: '0x888ba5' magenta: '0x888ba5'
cyan: '0x599caa' cyan: '0x599caa'
white: '0xd3ebe9' white: '0xd3ebe9'
# Normal colors
normal:
black: '#000000'
red: '#dd5555'
green: '#11ea11'
yellow: '#eedd00'
blue: '#2222ee'
magenta: '#cc00dd'
cyan: '#00cccc'
white: '#eeeeee'
# Bright colors
bright:
black: '#000000'
red: '#dd5555'
green: '#11ea11'
yellow: '#eedd00'
blue: '#2222ee'
magenta: '#cc00dd'
cyan: '#00cccc'
white: '#eeeeee'
# Dim colors # Dim colors
# #
# If the dim colors are not set, they will be calculated automatically based # If the dim colors are not set, they will be calculated automatically based
# on the `normal` colors. # on the `normal` colors.
#dim: #dim:
# black: '#000000' # black: '#131415'
# red: '#8c3336' # red: '#864343'
# green: '#7a8530' # green: '#777c44'
# yellow: '#97822e' # yellow: '#9e824c'
# blue: '#506d8f' # blue: '#556a7d'
# magenta: '#80638e' # magenta: '#75617b'
# cyan: '#497e7a' # cyan: '#5b7d78'
# white: '#9a9a9a' # white: '#828482'
# Indexed Colors # Indexed Colors
# #
@@ -275,13 +248,13 @@ colors:
# #
#indexed_colors: [] #indexed_colors: []
# Visual Bell # Bell
# #
# Any time the BEL code is received, Alacritty "rings" the visual bell. Once # The bell is rung every time the BEL control character is received.
# rung, the terminal background will be set to white and transition back to the #bell:
# default background color. You can control the rate of this transition by # Visual Bell Animation
# setting the `duration` property (represented in milliseconds). You can also #
# configure the transition function by setting the `animation` property. # Animation effect for flashing the screen when the visual bell is rung.
# #
# Values for `animation`: # Values for `animation`:
# - Ease # - Ease
@@ -294,12 +267,29 @@ colors:
# - EaseOutExpo # - EaseOutExpo
# - EaseOutCirc # - EaseOutCirc
# - Linear # - Linear
#animation: EaseOutExpo
# Duration of the visual bell flash. A `duration` of `0` will disable the
# visual bell animation.
#duration: 0
# Visual bell animation color.
#color: '#ffffff'
# Bell Command
# #
# Specifying a `duration` of `0` will disable the visual bell. # This program is executed whenever the bell is rung.
visual_bell: #
animation: EaseOutExpo # When set to `command: None`, no command will be executed.
duration: 0 #
color: '#ffffff' # Example:
# command:
# program: notify-send
# args: ["Hello, World!"]
#
# command:
# program: notify-send
# args: ["Ring"]
# Background opacity # Background opacity
# #
@@ -313,9 +303,6 @@ background_opacity: 0.8
# 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
# Allow terminal applications to change Alacritty's window title.
#dynamic_title: true
#cursor: #cursor:
# Cursor style # Cursor style
# #