49 lines
785 B
TOML
49 lines
785 B
TOML
# Alacritty Configuration
|
|
# Migrated from Ghostty configuration
|
|
|
|
# Import noctalia theme
|
|
import = ["~/.config/alacritty/themes/noctalia.toml"]
|
|
|
|
# Font configuration
|
|
[font]
|
|
size = 12.0
|
|
|
|
[font.normal]
|
|
family = "JetBrainsMono Nerd Font"
|
|
style = "Regular"
|
|
|
|
# Cursor configuration
|
|
[cursor]
|
|
style = "Block"
|
|
unfocused_hollow = true
|
|
|
|
# Window configuration
|
|
[window]
|
|
padding.x = 0
|
|
padding.y = 0
|
|
decorations = "None"
|
|
opacity = 0.989
|
|
|
|
[env]
|
|
TERM = "xterm-256color"
|
|
|
|
# Mouse configuration
|
|
[mouse]
|
|
hide_when_typing = true
|
|
|
|
# Keybindings
|
|
[[keyboard.bindings]]
|
|
key = "Equals"
|
|
mods = "Control|Shift"
|
|
action = "IncreaseFontSize"
|
|
|
|
[[keyboard.bindings]]
|
|
key = "Minus"
|
|
mods = "Control|Shift"
|
|
action = "DecreaseFontSize"
|
|
|
|
[[keyboard.bindings]]
|
|
key = "Key0"
|
|
mods = "Control|Shift"
|
|
action = "ResetFontSize"
|
|
|