dotfiles/manjaro/arch_custom/roles (1)/custom/files/alacritty.yml

55 lines
1.1 KiB
YAML

# Performance
env:
TERM: xterm-256color
# Appearance
window:
padding:
x: 10
y: 10
dynamic_padding: true
decorations: full
opacity: 0.95 # Slight transparency
# Font configuration
font:
normal:
family: FiraCode Nerd Font
style: Regular
bold:
style: Bold
italic:
style: Italic
size: 12.0
offset:
x: 0
y: 0
glyph_offset:
x: 0
y: 0
use_thin_strokes: true
# Colors (Dracula theme)
colors:
primary:
background: '#282a36'
foreground: '#f8f8f2'
cursor:
text: '#44475a'
cursor: '#f8f8f2'
selection:
text: '#f8f8f2'
background: '#44475a'
# Shell integration
shell:
program: /bin/zsh
# Keybindings for productivity
key_bindings:
- { key: V, mods: Control|Shift, action: Paste }
- { key: C, mods: Control|Shift, action: Copy }
- { key: N, mods: Control|Shift, action: SpawnNewInstance }
- { key: Key0, mods: Control, action: ResetFontSize }
- { key: Plus, mods: Control, action: IncreaseFontSize }
- { key: Minus, mods: Control, action: DecreaseFontSize }