2022-03-03 20:05:55 +00:00
|
|
|
## ____ __
|
|
|
|
## / __ \_________ _/ /_____
|
|
|
|
## / / / / ___/ __ `/ //_/ _ \
|
|
|
|
## / /_/ / / / /_/ / ,< / __/ Clay Gomera (Drake)
|
|
|
|
## /_____/_/ \__,_/_/|_|\___/ My custom alacritty config
|
2022-01-01 00:29:27 +00:00
|
|
|
##
|
|
|
|
|
|
|
|
schemes:
|
2022-12-05 01:49:49 +00:00
|
|
|
tokyo-night: &tokyo-night
|
2022-01-01 00:29:27 +00:00
|
|
|
# Default colors
|
|
|
|
primary:
|
2022-12-05 01:49:49 +00:00
|
|
|
background: '0x1a1b26'
|
|
|
|
foreground: '0xa9b1d6'
|
2022-01-01 00:29:27 +00:00
|
|
|
|
|
|
|
# Normal colors
|
|
|
|
normal:
|
2022-12-05 01:49:49 +00:00
|
|
|
black: '0x32344a'
|
|
|
|
red: '0xf7768e'
|
|
|
|
green: '0x9ece6a'
|
|
|
|
yellow: '0xe0af68'
|
|
|
|
blue: '0x7aa2f7'
|
|
|
|
magenta: '0xad8ee6'
|
|
|
|
cyan: '0x449dab'
|
|
|
|
white: '0x787c99'
|
2022-01-01 00:29:27 +00:00
|
|
|
|
|
|
|
# Bright colors
|
|
|
|
bright:
|
2022-12-05 01:49:49 +00:00
|
|
|
black: '0x444b6a'
|
|
|
|
red: '0xff7a93'
|
|
|
|
green: '0xb9f27c'
|
|
|
|
yellow: '0xff9e64'
|
|
|
|
blue: '0x7da6ff'
|
|
|
|
magenta: '0xbb9af7'
|
|
|
|
cyan: '0x0db9d7'
|
|
|
|
white: '0xacb0d0'
|
|
|
|
colors: *tokyo-night
|
2022-03-03 20:05:55 +00:00
|
|
|
|
|
|
|
## Set environment variables
|
|
|
|
env:
|
|
|
|
TERM: xterm-256color
|
|
|
|
|
|
|
|
## Window settigns
|
|
|
|
window:
|
2022-11-30 17:31:15 +00:00
|
|
|
opacity: 0.90
|
2022-03-03 20:05:55 +00:00
|
|
|
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
|
2022-09-19 19:06:15 +00:00
|
|
|
mono:
|
|
|
|
family: mononoki Nerd Font
|
|
|
|
style: Mono
|
2022-09-15 12:14:11 +00:00
|
|
|
size: 8
|
2022-03-03 20:05:55 +00:00
|
|
|
offset:
|
|
|
|
x: 0
|
|
|
|
y: 1
|
|
|
|
draw_bold_text_with_bright_colors: true
|
|
|
|
|
|
|
|
cursor:
|
|
|
|
style: Underline
|
2022-01-01 00:29:27 +00:00
|
|
|
|
2022-02-07 07:19:05 +00:00
|
|
|
shell:
|
2022-04-18 21:29:56 +00:00
|
|
|
program: /bin/bash
|
2022-03-03 20:05:55 +00:00
|
|
|
|
2022-01-01 00:29:27 +00:00
|
|
|
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 }
|