Files
dotfiles/alacritty/.config/alacritty/alacritty.toml
T
2026-04-09 16:20:12 +02:00

36 lines
591 B
TOML

[env]
TERM = "xterm-256color"
# Force integer scaling (prevents fractional DPI rounding issues)
WINIT_X11_SCALE_FACTOR = "1.0"
WINIT_HIDPI_FACTOR = "1.0"
[window]
dynamic_padding = true
decorations = "Buttonless"
[font]
normal.family = "GoMono Nerd Font"
size = 12
# Subtle positional tuning
offset.x = 0
offset.y = 0
glyph_offset.x = 0
glyph_offset.y = 0
[[keyboard.bindings]]
key = "="
mods = "Control"
action = "IncreaseFontSize"
[[keyboard.bindings]]
key = "-"
mods = "Control"
action = "DecreaseFontSize"
[[keyboard.bindings]]
key = "0"
mods = "Control"
action = "ResetFontSize"