68 lines
1.7 KiB
YAML
68 lines
1.7 KiB
YAML
# Alacritty Configuration
|
|
window.opacity: 0.92
|
|
window:
|
|
dimensions:
|
|
columns: 100
|
|
lines: 25
|
|
padding:
|
|
x: 0
|
|
y: 0
|
|
font:
|
|
normal:
|
|
family: CaskaydiaCove Nerd Font
|
|
style: Regular
|
|
size: 13.0
|
|
bold:
|
|
family: CaskaydiaCove Nerd Font
|
|
style: Bold
|
|
size: 13.0
|
|
cursor:
|
|
style: Block
|
|
unfocused_hollow: false
|
|
colors:
|
|
primary:
|
|
foreground: '#BBBBBB'
|
|
background: '#1B1D1E'
|
|
cursor:
|
|
text: '#BBBBBB'
|
|
cursor: '#FFFFFF'
|
|
normal:
|
|
black: '#1B1D1E'
|
|
red: '#7325FA'
|
|
green: '#23E298'
|
|
yellow: '#60D4DF'
|
|
blue: '#D08010'
|
|
magenta: '#FF0087'
|
|
cyan: '#D0A843'
|
|
white: '#BBBBBB'
|
|
bright:
|
|
black: '#555555'
|
|
red: '#9D66F6'
|
|
green: '#5FE0B1'
|
|
yellow: '#6DF2FF'
|
|
blue: '#FFAF00'
|
|
magenta: '#FF87AF'
|
|
cyan: '#FFCE51'
|
|
white: '#FFFFFF'
|
|
scrolling:
|
|
history: 50000
|
|
bar: none
|
|
mouse:
|
|
hide_when_typing: false
|
|
wheel_scroll_multiplier: 1
|
|
allow_square_glyphs_to_overflow_width: true
|
|
selection:
|
|
save_to_clipboard: false
|
|
key_bindings:
|
|
- { key: PageUp, mods: Control, action: ScrollPageUp }
|
|
- { key: PageDown, mods: Control, action: ScrollPageDown }
|
|
- { key: Up, mods: Control, action: IncreaseFontSize }
|
|
- { key: Down, mods: Control, action: DecreaseFontSize }
|
|
- { key: Plus, mods: Control, action: IncreaseFontSize }
|
|
- { key: Minus, mods: Control, action: DecreaseFontSize }
|
|
- { key: 0, mods: Control, action: ResetFontSize }
|
|
- { key: V, mods: Control|Shift, action: Paste }
|
|
- { key: V, mods: Control, chars: "\x16" }
|
|
- { key: C, mods: Control|Shift, action: Copy }
|
|
- { key: C, mods: Control, chars: "\x03" }
|