alacritty: Update config for 0.2.3
This commit is contained in:
parent
d623f6c8ab
commit
4181028565
@ -5,14 +5,8 @@
|
|||||||
# environment variables. Some entries may override variables
|
# environment variables. Some entries may override variables
|
||||||
# set by alacritty it self.
|
# set by alacritty it self.
|
||||||
env:
|
env:
|
||||||
# TERM env customization.
|
# don't do DPI scaling, it sucks
|
||||||
#
|
WINIT_HIDPI_FACTOR: '1.0'
|
||||||
# If this property is not set, alacritty will set it to xterm-256color.
|
|
||||||
#
|
|
||||||
# Note that some xterm terminfo databases don't declare support for italics.
|
|
||||||
# You can verify this by checking for the presence of `smso` and `sitm` in
|
|
||||||
# `infocmp xterm-256color`.
|
|
||||||
TERM: xterm-256color
|
|
||||||
|
|
||||||
window:
|
window:
|
||||||
# Window dimensions in character columns and lines
|
# Window dimensions in character columns and lines
|
||||||
@ -30,8 +24,7 @@ window:
|
|||||||
y: 2
|
y: 2
|
||||||
|
|
||||||
# Window decorations
|
# Window decorations
|
||||||
# Setting this to false will result in window without borders and title bar.
|
decorations: 'full'
|
||||||
decorations: true
|
|
||||||
|
|
||||||
scrolling:
|
scrolling:
|
||||||
# How many lines of scrollback to keep,
|
# How many lines of scrollback to keep,
|
||||||
@ -116,12 +109,6 @@ 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: false
|
|
||||||
|
|
||||||
# OS X only: use thin stroke font rendering. Thin strokes are suitable
|
# 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
|
# for retina displays, but for non-retina you probably want this set to
|
||||||
# false.
|
# false.
|
||||||
@ -130,10 +117,6 @@ font:
|
|||||||
# Should display the render timer
|
# Should display the render timer
|
||||||
render_timer: false
|
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 (Tomorrow Night Bright)
|
# Colors (Tomorrow Night Bright)
|
||||||
colors:
|
colors:
|
||||||
# Default colors
|
# Default colors
|
||||||
@ -150,11 +133,6 @@ colors:
|
|||||||
# dim_foreground: '0x9a9a9a'
|
# dim_foreground: '0x9a9a9a'
|
||||||
# bright_foreground: '0xffffff'
|
# bright_foreground: '0xffffff'
|
||||||
|
|
||||||
# Colors the cursor will use if `custom_cursor_colors` is true
|
|
||||||
cursor:
|
|
||||||
text: '0x000000'
|
|
||||||
cursor: '0xffffff'
|
|
||||||
|
|
||||||
# Normal colors
|
# Normal colors
|
||||||
normal:
|
normal:
|
||||||
black: '0x2e3436'
|
black: '0x2e3436'
|
||||||
@ -243,24 +221,25 @@ mouse:
|
|||||||
# or triple click.
|
# or triple click.
|
||||||
double_click: { threshold: 300 }
|
double_click: { threshold: 300 }
|
||||||
triple_click: { threshold: 300 }
|
triple_click: { threshold: 300 }
|
||||||
|
hide_when_typing: true
|
||||||
|
|
||||||
selection:
|
selection:
|
||||||
semantic_escape_chars: ",│`|:\"' ()[]{}<>"
|
semantic_escape_chars: ",│`|:\"' ()[]{}<>"
|
||||||
|
|
||||||
dynamic_title: true
|
dynamic_title: true
|
||||||
|
|
||||||
hide_cursor_when_typing: false
|
cursor:
|
||||||
|
# Whether the cursor should be a hollow block on window focus loss
|
||||||
|
unfocused_hollow: true
|
||||||
|
|
||||||
# Style of the cursor
|
# Style of the cursor
|
||||||
#
|
#
|
||||||
# Values for 'cursor_style':
|
# Values for 'cursor_style':
|
||||||
# - Block
|
# - Block
|
||||||
# - Underline
|
# - Underline
|
||||||
# - Beam
|
# - Beam
|
||||||
cursor_style: Block
|
style: Block
|
||||||
|
|
||||||
# Whether the cursor should be a hollow block on window focus loss
|
|
||||||
unfocused_hollow_cursor: true
|
|
||||||
|
|
||||||
# Live config reload (changes require restart)
|
# Live config reload (changes require restart)
|
||||||
live_config_reload: true
|
live_config_reload: true
|
||||||
|
Loading…
Reference in New Issue
Block a user