diff options
author | Christian Duerr <chrisduerr@users.noreply.github.com> | 2017-12-03 21:38:42 +0000 |
---|---|---|
committer | Joe Wilm <jwilm@users.noreply.github.com> | 2017-12-03 13:38:42 -0800 |
commit | 9bdac6b50aa911cd8f94624a1084a1ba35be6ed4 (patch) | |
tree | 0809e0e65413978c8f906528bee192559a05fa78 /alacritty.yml | |
parent | d552d28418ef192724b2b4353863708f31f325d4 (diff) | |
download | alacritty-9bdac6b50aa911cd8f94624a1084a1ba35be6ed4.tar.gz alacritty-9bdac6b50aa911cd8f94624a1084a1ba35be6ed4.zip |
Add cursor style option (#928)
The default cursor can now be configured through the cursor_style field
of the config. Valid options include Block, Underline, and Beam.
The default can be restored by sending \e[0q as in VTE terminals.
Live config reloading is supported for this parameter.
Diffstat (limited to 'alacritty.yml')
-rw-r--r-- | alacritty.yml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/alacritty.yml b/alacritty.yml index e26a816d..df9e4dde 100644 --- a/alacritty.yml +++ b/alacritty.yml @@ -201,6 +201,14 @@ selection: hide_cursor_when_typing: false +# Style of the cursor +# +# Values for 'cursor_style': +# - Block +# - Underline +# - Beam +cursor_style: Block + # Live config reload (changes require restart) live_config_reload: true |