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_macos.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_macos.yml')
-rw-r--r-- | alacritty_macos.yml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/alacritty_macos.yml b/alacritty_macos.yml index 761542a1..ee5bb6ad 100644 --- a/alacritty_macos.yml +++ b/alacritty_macos.yml @@ -182,6 +182,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 |