alacritty updates
This commit is contained in:
@@ -73,20 +73,20 @@ font:
|
|||||||
# style: Italic
|
# style: Italic
|
||||||
|
|
||||||
# Point size of the font
|
# Point size of the font
|
||||||
size: 8.0
|
size: 12.0
|
||||||
|
|
||||||
# Offset is the extra space around each character. offset.y can be thought of
|
# Offset is the extra space around each character. offset.y can be thought of
|
||||||
# as modifying the linespacing, and offset.x as modifying the letter spacing.
|
# as modifying the linespacing, and offset.x as modifying the letter spacing.
|
||||||
offset:
|
offset:
|
||||||
x: 0.0
|
x: 0
|
||||||
y: 0.0
|
y: 0
|
||||||
|
|
||||||
# Glyph offset determines the locations of the glyphs within their cells with
|
# Glyph offset determines the locations of the glyphs within their cells with
|
||||||
# the default being at the bottom. Increase the x offset to move the glyph to
|
# the default being at the bottom. Increase the x offset to move the glyph to
|
||||||
# the right, increase the y offset to move the glyph upward.
|
# the right, increase the y offset to move the glyph upward.
|
||||||
glyph_offset:
|
glyph_offset:
|
||||||
x: 0.0
|
x: 0
|
||||||
y: 0.0
|
y: 0
|
||||||
|
|
||||||
# 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
|
||||||
@@ -96,10 +96,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
|
||||||
@@ -195,11 +191,11 @@ mouse_bindings:
|
|||||||
mouse:
|
mouse:
|
||||||
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: ",│`|:\"' ()[]{}<>"
|
||||||
|
|
||||||
hide_cursor_when_typing: false
|
|
||||||
|
|
||||||
# Style of the cursor
|
# Style of the cursor
|
||||||
#
|
#
|
||||||
@@ -207,7 +203,8 @@ hide_cursor_when_typing: false
|
|||||||
# - Block
|
# - Block
|
||||||
# - Underline
|
# - Underline
|
||||||
# - Beam
|
# - Beam
|
||||||
cursor_style: Block
|
cursor:
|
||||||
|
style: Block
|
||||||
|
|
||||||
# Live config reload (changes require restart)
|
# Live config reload (changes require restart)
|
||||||
live_config_reload: true
|
live_config_reload: true
|
||||||
|
|||||||
@@ -16,16 +16,17 @@ env:
|
|||||||
# Window dimensions in character columns and lines
|
# Window dimensions in character columns and lines
|
||||||
# Falls back to size specified by window manager if set to 0x0.
|
# Falls back to size specified by window manager if set to 0x0.
|
||||||
# (changes require restart)
|
# (changes require restart)
|
||||||
dimensions:
|
window:
|
||||||
columns: 80
|
dimensions:
|
||||||
lines: 24
|
columns: 80
|
||||||
|
lines: 24
|
||||||
|
|
||||||
# Adds this many blank pixels of padding around the window
|
# Adds this many blank pixels of padding around the window
|
||||||
# Units are physical pixels; this is not DPI aware.
|
# Units are physical pixels; this is not DPI aware.
|
||||||
# (change requires restart)
|
# (change requires restart)
|
||||||
padding:
|
padding:
|
||||||
x: 2
|
x: 2
|
||||||
y: 0
|
y: 0
|
||||||
|
|
||||||
# Display tabs using this many cells (changes require restart)
|
# Display tabs using this many cells (changes require restart)
|
||||||
tabspaces: 4
|
tabspaces: 4
|
||||||
@@ -55,37 +56,37 @@ draw_bold_text_with_bright_colors: true
|
|||||||
font:
|
font:
|
||||||
# The normal (roman) font face to use.
|
# The normal (roman) font face to use.
|
||||||
normal:
|
normal:
|
||||||
family: xos4 Terminus # should be "Menlo" or something on macOS.
|
family: "xos4 Terminess Powerline" # should be "Menlo" or something on macOS.
|
||||||
# Style can be specified to pick a specific face.
|
# Style can be specified to pick a specific face.
|
||||||
style: Regular
|
style: Regular
|
||||||
|
|
||||||
# The bold font face
|
# The bold font face
|
||||||
bold:
|
bold:
|
||||||
family: xos4 Terminus # should be "Menlo" or something on macOS.
|
family: "xos4 Terminess Powerline" # should be "Menlo" or something on macOS.
|
||||||
# Style can be specified to pick a specific face.
|
# Style can be specified to pick a specific face.
|
||||||
style: Bold
|
style: Bold
|
||||||
|
|
||||||
# The italic font face
|
# The italic font face
|
||||||
italic:
|
italic:
|
||||||
family: xos4 Terminus # should be "Menlo" or something on macOS.
|
family: "xos4 Terminess Powerline" # should be "Menlo" or something on macOS.
|
||||||
# Style can be specified to pick a specific face.
|
# Style can be specified to pick a specific face.
|
||||||
# style: Italic
|
# style: Italic
|
||||||
|
|
||||||
# Point size of the font
|
# Point size of the font
|
||||||
size: 16.0
|
size: 18.0
|
||||||
|
|
||||||
# Offset is the extra space around each character. offset.y can be thought of
|
# Offset is the extra space around each character. offset.y can be thought of
|
||||||
# as modifying the linespacing, and offset.x as modifying the letter spacing.
|
# as modifying the linespacing, and offset.x as modifying the letter spacing.
|
||||||
offset:
|
offset:
|
||||||
x: 0.0
|
x: 0
|
||||||
y: 0.0
|
y: 0
|
||||||
|
|
||||||
# Glyph offset determines the locations of the glyphs within their cells with
|
# Glyph offset determines the locations of the glyphs within their cells with
|
||||||
# the default being at the bottom. Increase the x offset to move the glyph to
|
# the default being at the bottom. Increase the x offset to move the glyph to
|
||||||
# the right, increase the y offset to move the glyph upward.
|
# the right, increase the y offset to move the glyph upward.
|
||||||
glyph_offset:
|
glyph_offset:
|
||||||
x: 0.0
|
x: 0
|
||||||
y: 0.0
|
y: 0
|
||||||
|
|
||||||
# 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
|
||||||
@@ -95,10 +96,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
|
||||||
@@ -194,11 +191,11 @@ mouse_bindings:
|
|||||||
mouse:
|
mouse:
|
||||||
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: ",│`|:\"' ()[]{}<>"
|
||||||
|
|
||||||
hide_cursor_when_typing: false
|
|
||||||
|
|
||||||
# Style of the cursor
|
# Style of the cursor
|
||||||
#
|
#
|
||||||
@@ -206,7 +203,8 @@ hide_cursor_when_typing: false
|
|||||||
# - Block
|
# - Block
|
||||||
# - Underline
|
# - Underline
|
||||||
# - Beam
|
# - Beam
|
||||||
cursor_style: Block
|
cursor:
|
||||||
|
style: Block
|
||||||
|
|
||||||
# Live config reload (changes require restart)
|
# Live config reload (changes require restart)
|
||||||
live_config_reload: true
|
live_config_reload: true
|
||||||
|
|||||||
Reference in New Issue
Block a user