1
0
mirror of https://github.com/frebib/dotfiles.git synced 2024-06-14 12:57:23 +00:00

alacritty: update config for 0.2.3

This commit is contained in:
Joe Groocock 2018-11-18 22:22:10 +00:00
parent 820c355722
commit 1a6c9dedc0
Signed by: frebib
GPG Key ID: E0B16BEACFBB6A86

View File

@ -120,20 +120,9 @@ font:
x: 0 x: 0
y: 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.
# On X11 it is possible to change the DPI for each instance of alacritty by using
# `WINIT_HIDPI_FACTOR=1.0 alacritty` to scale the font.
scale_with_dpi: true
# Display the time it takes to redraw each frame. # Display the time it takes to redraw each frame.
render_timer: false render_timer: false
# Use custom cursor colors. If `true`, the `colors.cursor.foreground` and
# `colors.cursor.background` colors will be used to display the cursor.
# Otherwise the cell colors are inverted for the cursor.
custom_cursor_colors: true
# 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: true draw_bold_text_with_bright_colors: true
@ -247,6 +236,22 @@ mouse:
double_click: { threshold: 300 } double_click: { threshold: 300 }
triple_click: { threshold: 300 } triple_click: { threshold: 300 }
# If this is `true`, the cursor is temporarily hidden when typing.
hide_when_typing: false
url:
# URL launcher
#
# This program is executed when clicking on a text which is recognized as a URL.
# The URL is always added to the command as the last parameter.
launcher: xdg-open
# URL modifiers
#
# These are the modifiers that need to be held down for opening URLs when clicking
# on them. The available modifiers are documented in the key binding section.
#modifiers: Control|Shift
selection: selection:
semantic_escape_chars: ",│`|:\"' ()[]{}<>" semantic_escape_chars: ",│`|:\"' ()[]{}<>"
@ -257,19 +262,18 @@ selection:
dynamic_title: true dynamic_title: true
hide_cursor_when_typing: false cursor:
# Cursor style # Cursor style
# #
# Values for 'cursor_style': # Values for 'style':
# - Block # - Block
# - Underline # - _ Underline
# - Beam # - | Beam
cursor_style: Block style: Block
# If this is `true`, the cursor will be rendered as a hollow box when the # If this is `true`, the cursor will be rendered as a hollow box when the
# window is not focused. # window is not focused.
unfocused_hollow_cursor: true unfocused_hollow: true
# Live config reload (changes require restart) # Live config reload (changes require restart)
live_config_reload: true live_config_reload: true