mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
54 lines
1.5 KiB
YAML
54 lines
1.5 KiB
YAML
# 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:
|
|
family: JetBrainsMono Nerd Font
|
|
# The `style` can be specified to pick a specific face.
|
|
style: Regular
|
|
|
|
# Bold font face
|
|
bold:
|
|
family: JetBrainsMono Nerd Font
|
|
# The `style` can be specified to pick a specific face.
|
|
style: Bold
|
|
|
|
# Italic font face
|
|
italic:
|
|
family: JetBrainsMono Nerd Font
|
|
# The `style` can be specified to pick a specific face.
|
|
style: Italic
|
|
|
|
# Point size of the font
|
|
size: 11.0
|
|
|
|
# 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
|
|
y: 0
|
|
|
|
# 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
|
|
y: 0
|
|
|
|
import:
|
|
- /home/tstarr/.config/alacritty/dracula.yml
|