dotfiles/.config/alacritty/alacritty.yml.bak

120 lines
2.7 KiB
YAML

colors:
# Onedarker
# primary:
# foreground: "#abb2bf"
# background: "#282c34"
#
# # Normal colors
# normal:
# black: "#1b1d1e"
# red: "#ff5995"
# green: "#b6e354"
# yellow: "#f3fd21"
# blue: "#3f78ff"
# magenta: "#9e6ffe"
# cyan: "#23ced4"
# white: "#abb2bf"
#
# # Bright colors
# bright:
# black: "#505354"
# red: "#ff5995"
# green: "#b6e354"
# yellow: "#f3fd21"
# blue: "#3f78ff"
# magenta: "#9e6ffe"
# cyan: "#23ced4"
# white: "#f8f8f2"
# TokyoNight
# Default colors
primary:
background: '0x1a1b26'
foreground: '0xc0caf5'
# Normal colors
normal:
black: '0x15161E'
red: '0xf7768e'
green: '0x9ece6a'
yellow: '0xe0af68'
blue: '0x7aa2f7'
magenta: '0xbb9af7'
cyan: '0x7dcfff'
white: '0xa9b1d6'
# Bright colors
bright:
black: '0x414868'
red: '0xf7768e'
green: '0x9ece6a'
yellow: '0xe0af68'
blue: '0x7aa2f7'
magenta: '0xbb9af7'
cyan: '0x7dcfff'
white: '0xc0caf5'
indexed_colors:
- { index: 16, color: '0xff9e64' }
- { index: 17, color: '0xdb4b4b' }
transparent_background_colors: true
font:
# Get SauceCodePro NerdFont from here: https://github.com/ryanoasis/nerd-fonts/releases/latest - download SourceCodePro.zip
# The normal font face to use.
normal:
family: SauceCodePro NF
family: SauceCodePro NerdFont
# The bold font face
bold:
family: SauceCodePro NF
family: SauceCodePro NerdFont
# The italic font face
italic:
family: SauceCodePro NF
family: SauceCodePro NerdFont
# sizes that work well for 1920 by 1080: 14 (large), 12 (wide), 11.5 (narrow)
size: 11.5
offset:
x: 0
y: 0
glyph_offset:
x: 0
y: 0
startup_mode: Fullscreen
window:
padding:
x: 0
y: 4
scrolling:
# number of lines to keep in history buffer
history: 10000
# Scrolling distance multiplier.
# multiplier: 10
# # If `true`, bold text is drawn using the bright color variants.
# draw_bold_text_with_bright_colors: true
# selection:
semantic_escape_chars: ',│`|:"'' ()[]{}<>'
save_to_clipboard: true
live_config_reload: true
mouse:
hide_when_typing: true
key_bindings:
- { key: V, mods: Control|Shift, action: Paste }
- { key: C, mods: Control|Shift, action: Copy }
- { key: Key0, mods: Control, action: ResetFontSize }
- { key: Equals, mods: Control, action: IncreaseFontSize }
- { key: Plus, mods: Control|Shift, action: IncreaseFontSize }
- { key: Minus, mods: Control, action: DecreaseFontSize }
- { key: F11, action: ToggleFullscreen }