diff options
Diffstat (limited to 'alacritty.yml')
-rw-r--r-- | alacritty.yml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/alacritty.yml b/alacritty.yml index 9a3a3711..28ddf365 100644 --- a/alacritty.yml +++ b/alacritty.yml @@ -118,6 +118,32 @@ colors: # cyan: '0x93a1a1' # white: '0xfdf6e3' +# Visual Bell +# +# Any time the BEL code is received, Alacritty "rings" the visual bell. Once +# rung, the terminal background will be set to white and transition back to the +# default background color. You can control the rate of this transition by +# setting the `duration` property (represented in milliseconds). You can also +# configure the transition function by setting the `animation` property. +# +# Possible values for `animation` +# `Ease` +# `EaseOut` +# `EaseOutSine` +# `EaseOutQuad` +# `EaseOutCubic` +# `EaseOutQuart` +# `EaseOutQuint` +# `EaseOutExpo` +# `EaseOutCirc` +# `Linear` +# +# To completely disable the visual bell, set its duration to 0. +# +#visual_bell: +# animation: EaseOutExpo +# duration: 150 + # Key bindings # # Each binding is defined as an object with some properties. Most of the |