dotfiles/home/private_dot_config/alacritty/alacritty.yml

48 lines
991 B
YAML
Raw Normal View History

2021-12-08 09:38:24 -06:00
import:
2023-08-16 15:19:31 -05:00
- ~/.config/alacritty/catppuccin-mocha.yml
2023-09-08 10:34:18 -05:00
env:
TERM: xterm-256color
2021-12-08 09:38:24 -06:00
window:
dimensions:
columns: 90
lines: 45
# Window position (changes require restart)
# Blank space added around the window in pixels. This padding is scaled
# by DPI and the specified value is always added at both opposing sides.
padding:
x: 10
2022-03-29 12:40:10 -05:00
y: 10
2021-12-08 09:38:24 -06:00
dynamic_padding: true
# Values for `decorations`:
# - full: Borders and title bar
# - none: Neither borders nor title bar
#
decorations: full
title: Alacritty
# Font configuration
font:
normal:
2021-12-22 22:40:39 -06:00
family: "MonoLisa Nerd Font"
2023-08-16 15:19:31 -05:00
size: 12
2021-12-08 09:38:24 -06:00
2022-02-03 16:58:34 -06:00
cursor:
style:
2021-12-08 09:38:24 -06:00
# Values for `shape`:
# - ▇ Block
# - _ Underline
# - | Beam
2022-02-03 16:58:34 -06:00
shape: Underline
2021-12-08 09:38:24 -06:00
# Values for `blinking`:
# - Never: Prevent the cursor from ever blinking
# - Off: Disable blinking by default
# - On: Enable blinking by default
# - Always: Force the cursor to always blink
2022-04-29 10:37:55 -05:00
blinking: Never