2022-12-24 00:16:26 -08:00
|
|
|
# Configuration for Alacritty, the GPU enhanced terminal emulator
|
|
|
|
|
|
|
|
# Any items in the `env` entry below will be added as
|
|
|
|
# environment variables. Some entries may override variables
|
|
|
|
# set by alacritty it self.
|
|
|
|
env:
|
|
|
|
# TERM env customization.
|
|
|
|
#
|
|
|
|
# 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
|
|
|
|
|
|
|
|
# Font configuration (changes require restart)
|
|
|
|
font:
|
|
|
|
# Normal (roman) font face
|
|
|
|
normal:
|
2023-05-07 16:51:37 -07:00
|
|
|
family: Jet Brains Mono Nerd Font
|
2022-12-24 00:16:26 -08:00
|
|
|
# The `style` can be specified to pick a specific face.
|
|
|
|
style: Regular
|
|
|
|
|
|
|
|
# Bold font face
|
|
|
|
bold:
|
2023-05-07 16:51:37 -07:00
|
|
|
family: Jet Brains Mono Nerd Font
|
2022-12-24 00:16:26 -08:00
|
|
|
# The `style` can be specified to pick a specific face.
|
|
|
|
style: Bold
|
|
|
|
|
|
|
|
# Italic font face
|
|
|
|
italic:
|
2023-05-07 16:51:37 -07:00
|
|
|
family: Jet Brains Mono Nerd Font
|
2022-12-24 00:16:26 -08:00
|
|
|
# The `style` can be specified to pick a specific face.
|
|
|
|
style: Italic
|
|
|
|
|
|
|
|
# Point size of the font
|
2023-05-06 23:13:04 -07:00
|
|
|
size: 12.0
|
2022-12-24 00:16:26 -08:00
|
|
|
|
|
|
|
# Offset is the extra space around each character. `offset.y` can be thought of
|
|
|
|
# as modifying the line spacing, and `offset.x` as modifying the letter spacing.
|
|
|
|
offset:
|
|
|
|
x: 0
|
2023-05-06 23:13:04 -07:00
|
|
|
y: 1
|
2022-12-24 00:16:26 -08:00
|
|
|
|
|
|
|
# Glyph offset determines the locations of the glyphs within their cells with
|
|
|
|
# the default being at the bottom. Increasing `x` moves the glyph to the right,
|
|
|
|
# increasing `y` moves the glyph upwards.
|
|
|
|
glyph_offset:
|
|
|
|
x: 0
|
2023-05-06 23:13:04 -07:00
|
|
|
y: 1
|
2022-12-24 00:16:26 -08:00
|
|
|
|
|
|
|
import:
|
2023-05-07 16:51:37 -07:00
|
|
|
- ~/.config/alacritty/themes/themes/monokai-pro.yml
|