diff --git a/alacritty/.config/alacritty/alacritty.yml b/alacritty/.config/alacritty/alacritty.yml index 02bb175..0d7dd27 100644 --- a/alacritty/.config/alacritty/alacritty.yml +++ b/alacritty/.config/alacritty/alacritty.yml @@ -29,7 +29,10 @@ window: # Window decorations # Setting this to false will result in window without borders and title bar. - decorations: true + decorations: none + + # When true, alacritty starts maximized. + start_maximized: true # Display tabs using this many cells (changes require restart) tabspaces: 8 @@ -73,10 +76,6 @@ font: x: 0 y: 0 - # Scale the font size based on the monitor's DPI. This will lead to bigger text on HiDPI - # screens and make reading text a little easier. - scale_with_dpi: true - # OS X only: use thin stroke font rendering. Thin strokes are suitable # for retina displays, but for non-retina you probably want this set to # false. @@ -85,10 +84,6 @@ font: # Should display the render timer render_timer: false -# Use custom cursor colors. If true, display the cursor in the cursor.foreground -# and cursor.background colors, otherwise invert the colors of the cursor. -custom_cursor_colors: false - # Colors (Solarized Dark) colors: # Default colors @@ -182,25 +177,18 @@ mouse: # scrolling for applications like `man`. # # To disable this completely, set `faux_scrollback_lines` to 0. - faux_scrollback_lines: 1 + faux_scrolling_lines: 1 + + hide_when_typing: false selection: semantic_escape_chars: ",│`|:\"' ()[]{}<>" dynamic_title: true -hide_cursor_when_typing: false - -# Style of the cursor -# -# Values for 'cursor_style': -# - Block -# - Underline -# - Beam -cursor_style: Block - -# Whether the cursor should be a hollow block on window focus loss -unfocused_hollow_cursor: true +cursor: + style: Block + unfocused_hollow: true # Live config reload (changes require restart) live_config_reload: true