From 3b52d32411a01252bc6c9b914f7c1bd3211b4b96 Mon Sep 17 00:00:00 2001 From: mattia Date: Fri, 13 Aug 2021 14:24:07 +0200 Subject: [PATCH] alacritty.yml: Set a custom cursor * Set "Beam" as cursor style * Disable "unfocused_hollow" * Set custom thickness --- alacritty.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/alacritty.yml b/alacritty.yml index 35b8ede..f8c0851 100644 --- a/alacritty.yml +++ b/alacritty.yml @@ -320,14 +320,14 @@ colors: # When set to `true`, selected text will be copied to the primary clipboard. #save_to_clipboard: false -#cursor: +cursor: # Cursor style # # Values for `style`: # - ▇ Block # - _ Underline # - | Beam - #style: Block + style: Beam # Vi mode cursor style # @@ -339,11 +339,11 @@ colors: # If this is `true`, the cursor will be rendered as a hollow box when the # window is not focused. - #unfocused_hollow: true + unfocused_hollow: false # Thickness of the cursor relative to the cell width as floating point number # from `0.0` to `1.0`. - #thickness: 0.15 + thickness: 0.25 # Live config reload (changes require restart) #live_config_reload: true