diff options
Diffstat (limited to 'alacritty.yml')
-rw-r--r-- | alacritty.yml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/alacritty.yml b/alacritty.yml index 6762a3c0..af4535d5 100644 --- a/alacritty.yml +++ b/alacritty.yml @@ -141,6 +141,15 @@ colors: background: '0x000000' foreground: '0xeaeaea' + # (Optional) Bright and Dim foreground colors + # + # 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` + # is `false`, the normal foreground color will be used. + # + # dim_foreground: '0x9a9a9a' + # bright_foreground: '0xffffff' + # Colors the cursor will use if `custom_cursor_colors` is true cursor: text: '0x000000' @@ -250,6 +259,9 @@ hide_cursor_when_typing: false # - Beam cursor_style: Block +# Whether the cursor should be a hollow block on window focus loss +unfocused_hollow_cursor: true + # Live config reload (changes require restart) live_config_reload: true |