From b66747f9fdafc32670f4f44242f2001f0c79f0f7 Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Fri, 28 Jun 2019 12:25:46 +0200 Subject: [PATCH] Update alacritty config for new alacritty release Alacritty deprecated some startup options, this should bring them back into the correct use and get rid of the error message on startup. --- .config/alacritty/alacritty.yml | 60 +++++++++++++++++++++++++++------ 1 file changed, 50 insertions(+), 10 deletions(-) diff --git a/.config/alacritty/alacritty.yml b/.config/alacritty/alacritty.yml index de4d65e..269c91a 100644 --- a/.config/alacritty/alacritty.yml +++ b/.config/alacritty/alacritty.yml @@ -21,6 +21,14 @@ window: columns: 0 lines: 0 + # Window position (changes require restart) + # + # Specified in number of pixels. + # If the position is not set, the window manager will handle the placement. + #position: + # x: 0 + # y: 0 + # Window padding (changes require restart) # # Blank space added around the window in pixels. This padding is scaled @@ -43,8 +51,22 @@ window: # - buttonless: Title bar, transparent background, but no title bar buttons decorations: full - # When true, alacritty starts maximized. - start_maximized: false + # Startup Mode (changes require restart) + # + # Values for `startup_mode`: + # - Windowed + # - Maximized + # - Fullscreen + # + # Values for `startup_mode` (macOS only): + # - SimpleFullscreen + startup_mode: Windowed + + # Window title + #title: Alacritty + + # Window class (Linux only): + #class: Alacritty scrolling: # Maximum number of lines in the scrollback buffer. @@ -100,7 +122,7 @@ font: family: monospace # The `style` can be specified to pick a specific face. - #style: Bold + style: Bold # Italic font face italic: @@ -111,7 +133,7 @@ font: family: monospace # The `style` can be specified to pick a specific face. - #style: Italic + style: Italic # Point size size: 10.5 @@ -145,12 +167,6 @@ font: # effect. use_thin_strokes: true -# Display the time it takes to redraw each frame. -render_timer: false - -# Keep the log file after quitting Alacritty. -persistent_logging: false - # If `true`, bold text is drawn using the bright color variants. draw_bold_text_with_bright_colors: false colors: @@ -313,6 +329,30 @@ enable_experimental_conpty_backend: false # Send ESC (\x1b) before characters when alt is pressed. alt_send_esc: true +debug: + # Display the time it takes to redraw each frame. + render_timer: false + + # Keep the log file after quitting Alacritty. + persistent_logging: false + + # Log level + # + # Values for `log_level`: + # - None + # - Error + # - Warn + # - Info + # - Debug + # - Trace + log_level: Warn + + # Print all received window events. + print_events: false + + # Record all characters and escape sequences as test data. + ref_test: false + # Key bindings # # Key bindings are specified as a list of objects. Each binding will specify a