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.
This commit is contained in:
Marty Oehme 2019-06-28 12:25:46 +02:00
parent 262889ec88
commit b66747f9fd

View file

@ -21,6 +21,14 @@ window:
columns: 0 columns: 0
lines: 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) # Window padding (changes require restart)
# #
# Blank space added around the window in pixels. This padding is scaled # 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 # - buttonless: Title bar, transparent background, but no title bar buttons
decorations: full decorations: full
# When true, alacritty starts maximized. # Startup Mode (changes require restart)
start_maximized: false #
# 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: scrolling:
# Maximum number of lines in the scrollback buffer. # Maximum number of lines in the scrollback buffer.
@ -100,7 +122,7 @@ font:
family: monospace family: monospace
# The `style` can be specified to pick a specific face. # The `style` can be specified to pick a specific face.
#style: Bold style: Bold
# Italic font face # Italic font face
italic: italic:
@ -111,7 +133,7 @@ font:
family: monospace family: monospace
# The `style` can be specified to pick a specific face. # The `style` can be specified to pick a specific face.
#style: Italic style: Italic
# Point size # Point size
size: 10.5 size: 10.5
@ -145,12 +167,6 @@ font:
# effect. # effect.
use_thin_strokes: true 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. # If `true`, bold text is drawn using the bright color variants.
draw_bold_text_with_bright_colors: false draw_bold_text_with_bright_colors: false
colors: colors:
@ -313,6 +329,30 @@ enable_experimental_conpty_backend: false
# Send ESC (\x1b) before characters when alt is pressed. # Send ESC (\x1b) before characters when alt is pressed.
alt_send_esc: true 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
# #
# Key bindings are specified as a list of objects. Each binding will specify a # Key bindings are specified as a list of objects. Each binding will specify a