summaryrefslogtreecommitdiff
path: root/alacritty_windows.yml
diff options
context:
space:
mode:
Diffstat (limited to 'alacritty_windows.yml')
-rw-r--r--alacritty_windows.yml42
1 files changed, 20 insertions, 22 deletions
diff --git a/alacritty_windows.yml b/alacritty_windows.yml
index 5447fcd7..8be7ea52 100644
--- a/alacritty_windows.yml
+++ b/alacritty_windows.yml
@@ -105,11 +105,6 @@ font:
# Display the time it takes to redraw each frame.
render_timer: false
-# Use custom cursor colors. If `true`, the `colors.cursor.foreground` and
-# `colors.cursor.background` colors will be used to display the cursor.
-# Otherwise the cell colors are inverted for the cursor.
-custom_cursor_colors: false
-
# Colors (Tomorrow Night Bright)
colors:
# Default colors
@@ -127,10 +122,11 @@ colors:
# Cursor colors
#
- # These will only be used when the `custom_cursor_colors` field is set to `true`.
- cursor:
- text: '0x000000'
- cursor: '0xffffff'
+ # Colors which should be used to draw the terminal cursor. If these are unset,
+ # the cursor color will be the inverse of the cell color.
+ #cursor:
+ # text: '0x000000'
+ # cursor: '0xffffff'
# Normal colors
normal:
@@ -233,6 +229,9 @@ mouse:
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
#
@@ -249,19 +248,18 @@ mouse:
selection:
semantic_escape_chars: ",│`|:\"' ()[]{}<>"
-hide_cursor_when_typing: false
-
-# Cursor style
-#
-# Values for 'cursor_style':
-# - Block
-# - Underline
-# - Beam
-cursor_style: Block
-
-# If this is `true`, the cursor will be rendered as a hollow box when the
-# window is not focused.
-unfocused_hollow_cursor: true
+cursor:
+ # Cursor style
+ #
+ # Values for 'style':
+ # - ▇ Block
+ # - _ Underline
+ # - | Beam
+ style: Block
+
+ # If this is `true`, the cursor will be rendered as a hollow box when the
+ # window is not focused.
+ unfocused_hollow: true
# Live config reload (changes require restart)
live_config_reload: true