mirror of https://github.com/E-Almqvist/dotfiles
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
125 lines
2.9 KiB
125 lines
2.9 KiB
# Configuration for Alacritty, the GPU enhanced terminal emulator.
|
|
env:
|
|
TERM: xterm-256color
|
|
|
|
window:
|
|
opacity: 1.0
|
|
padding:
|
|
x: 8
|
|
y: 8
|
|
|
|
# Window title
|
|
title: Terminal
|
|
|
|
# Window class (Linux/BSD only):
|
|
class:
|
|
# Application instance name
|
|
instance: Alacritty
|
|
# General application class
|
|
general: Alacritty
|
|
|
|
scrolling:
|
|
history: 5000
|
|
|
|
# Font configuration
|
|
font:
|
|
# Normal (roman) font face
|
|
normal:
|
|
family: Droid Sans Mono
|
|
|
|
# The `style` can be specified to pick a specific face.
|
|
style: Normal
|
|
|
|
# Bold font face
|
|
bold:
|
|
family: Droid Sans Mono
|
|
|
|
# The `style` can be specified to pick a specific face.
|
|
style: Bold
|
|
|
|
# Italic font face
|
|
italic:
|
|
family: Droid Sans Mono
|
|
|
|
style: Italic
|
|
|
|
# Bold italic font face
|
|
bold_italic:
|
|
family: Droid Sans Mono
|
|
|
|
# The `style` can be specified to pick a specific face.
|
|
style: Bold Italic
|
|
|
|
# Point size
|
|
size: 12
|
|
|
|
# If `true`, bold text is drawn using the bright color variants.
|
|
draw_bold_text_with_bright_colors: true
|
|
|
|
colors:
|
|
# Default colors
|
|
primary:
|
|
background: "0x080808"
|
|
foreground: "0xffffff"
|
|
|
|
# Colors the cursor will use if `custom_cursor_colors` is true
|
|
cursor:
|
|
text: "0x1d1f21"
|
|
cursor: "0xc5c8c6"
|
|
|
|
# Normal colors
|
|
normal:
|
|
black: "0x1d1f21"
|
|
red: "0xcc6666"
|
|
green: "0xb5bd68"
|
|
yellow: "0xf0c674"
|
|
blue: "0x81a2be"
|
|
magenta: "0xb294bb"
|
|
cyan: "0x8abeb7"
|
|
white: "0xc5c8c6"
|
|
|
|
# Bright colors
|
|
bright:
|
|
black: "0x969896"
|
|
red: "0xcc6666"
|
|
green: "0xb5bd68"
|
|
yellow: "0xf0c674"
|
|
blue: "0x81a2be"
|
|
magenta: "0xb294bb"
|
|
cyan: "0x8abeb7"
|
|
white: "0xffffff"
|
|
|
|
indexed_colors:
|
|
- { index: 16, color: "0xde935f" }
|
|
- { index: 17, color: "0xa3685a" }
|
|
- { index: 18, color: "0x282a2e" }
|
|
- { index: 19, color: "0x373b41" }
|
|
- { index: 20, color: "0xb4b7b4" }
|
|
- { index: 21, color: "0xe0e0e0" }
|
|
|
|
cursor:
|
|
# Values for `style`:
|
|
# - ▇ Block
|
|
# - _ Underline
|
|
# - | Beam
|
|
style: Block
|
|
|
|
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 }
|
|
|