neodotfiles/user/.config/alacritty/alacritty.yml
2022-12-04 21:49:49 -04:00

100 lines
2.6 KiB
YAML

## ____ __
## / __ \_________ _/ /_____
## / / / / ___/ __ `/ //_/ _ \
## / /_/ / / / /_/ / ,< / __/ Clay Gomera (Drake)
## /_____/_/ \__,_/_/|_|\___/ My custom alacritty config
##
schemes:
tokyo-night: &tokyo-night
# Default colors
primary:
background: '0x1a1b26'
foreground: '0xa9b1d6'
# Normal colors
normal:
black: '0x32344a'
red: '0xf7768e'
green: '0x9ece6a'
yellow: '0xe0af68'
blue: '0x7aa2f7'
magenta: '0xad8ee6'
cyan: '0x449dab'
white: '0x787c99'
# Bright colors
bright:
black: '0x444b6a'
red: '0xff7a93'
green: '0xb9f27c'
yellow: '0xff9e64'
blue: '0x7da6ff'
magenta: '0xbb9af7'
cyan: '0x0db9d7'
white: '0xacb0d0'
colors: *tokyo-night
## Set environment variables
env:
TERM: xterm-256color
## Window settigns
window:
opacity: 0.90
padding:
x: 6
y: 6
dynamic_padding: false
title: Alacritty
class:
instance: Alacritty
general: Alacritty
## Scrolling settings
scrolling:
history: 5000
## Font settings
font:
normal:
family: mononoki Nerd Font
style: Regular
bold:
family: mononoki Nerd Font
style: Bold
italic:
family: mononoki Nerd Font
style: Italic
bold_italic:
family: mononoki Nerd Font
style: Bold Italic
mono:
family: mononoki Nerd Font
style: Mono
size: 8
offset:
x: 0
y: 1
draw_bold_text_with_bright_colors: true
cursor:
style: Underline
shell:
program: /bin/bash
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: F11, mods: None, action: ToggleFullscreen }
- { key: L, mods: Control, action: ClearLogNotice }
- { key: L, mods: Control, chars: "\x0c" }
- { key: Home, mods: Shift, action: ScrollToTop, mode: ~Alt }
- { key: End, mods: Shift, action: ScrollToBottom, mode: ~Alt }