mirror of
http://github.com/JaeUs3792/dotfiles
synced 2025-12-14 08:01:35 +09:00
81 lines
2.2 KiB
YAML
81 lines
2.2 KiB
YAML
env:
|
|
TERM: xterm-256color
|
|
|
|
window:
|
|
padding:
|
|
x: 6
|
|
y: 6
|
|
title: Alacritty
|
|
class:
|
|
instance: Alacritty
|
|
general: Alacritty
|
|
|
|
scrolling:
|
|
history: 10000
|
|
font:
|
|
normal:
|
|
family: UbuntuMono
|
|
style: Regular
|
|
bold:
|
|
family: UbuntuMono
|
|
style: Bold
|
|
italic:
|
|
family: UbuntuMono
|
|
style: Italic
|
|
bold_italic:
|
|
family: UbuntuMono
|
|
style: Bold Italic
|
|
# Point size
|
|
size: 12.0
|
|
offset:
|
|
x: 0
|
|
y: 1
|
|
draw_bold_text_with_bright_colors: true
|
|
colors:
|
|
# Default colors
|
|
primary:
|
|
background: '0x292d3e'
|
|
foreground: '0xd0d0d0'
|
|
|
|
# Normal colors
|
|
normal:
|
|
black: '0x292d3e'
|
|
red: '0xf07178'
|
|
green: '0xc3e88d'
|
|
yellow: '0xffcb6b'
|
|
blue: '0x82aaff'
|
|
magenta: '0xc792ea'
|
|
cyan: '0x89ddff'
|
|
white: '0xd0d0d0'
|
|
|
|
# Bright colors
|
|
bright:
|
|
black: '0x434758'
|
|
red: '0xff8b92'
|
|
green: '0xddffa7'
|
|
yellow: '0xffe585'
|
|
blue: '0x9cc4ff'
|
|
magenta: '0xe1acff'
|
|
cyan: '0xa3f7ff'
|
|
white: '0xffffff'
|
|
background_opacity: 0.75
|
|
key_bindings:
|
|
# (Windows, Linux, and BSD only)
|
|
- { key: V, mods: Control|Shift, action: Paste }
|
|
- { key: C, mods: Control|Shift, action: Copy }
|
|
- { key: Insert, mods: Shift, action: PasteSelection }
|
|
- { key: Key0, mods: Control, action: ResetFontSize }
|
|
- { key: Equals, mods: Control, action: IncreaseFontSize }
|
|
- { key: Plus, mods: Control, action: IncreaseFontSize }
|
|
- { key: Minus, mods: Control, action: DecreaseFontSize }
|
|
- { key: Minus, mods: Control, action: DecreaseFontSize }
|
|
|
|
- { key: Paste, action: Paste }
|
|
- { key: Copy, action: Copy }
|
|
- { key: L, mods: Control, action: ClearLogNotice }
|
|
- { key: L, mods: Control, chars: "\x0c" }
|
|
- { key: PageUp, mods: Shift, action: ScrollPageUp, mode: ~Alt }
|
|
- { key: PageDown, mods: Shift, action: ScrollPageDown, mode: ~Alt }
|
|
- { key: Home, mods: Shift, action: ScrollToTop, mode: ~Alt }
|
|
- { key: End, mods: Shift, action: ScrollToBottom, mode: ~Alt }
|