mirror of
https://gitlab.com/sagidayan/linux-config.git
synced 2024-12-23 06:29:53 +00:00
81 lines
1.7 KiB
YAML
81 lines
1.7 KiB
YAML
---
|
|
window:
|
|
# Blank space added around the window in pixels
|
|
padding:
|
|
x: 2
|
|
y: 2
|
|
|
|
# Spread additional padding evenly around the terminal content
|
|
dynamic_padding: true
|
|
|
|
# Disable border and title bar
|
|
decorations: none
|
|
|
|
font:
|
|
normal:
|
|
family: Hack Nerd Font
|
|
style: Regular
|
|
bold:
|
|
family: Hack Nerd Font
|
|
style: Bold
|
|
italic:
|
|
family: Hack Nerd Font
|
|
style: Italic
|
|
# Point size of the font
|
|
size: 11
|
|
|
|
mouse:
|
|
hide_when_typing: true
|
|
|
|
selection:
|
|
# When set to `true`, selected text will be copied to the primary
|
|
# clipboard.
|
|
save_to_clipboard: true
|
|
|
|
cursor:
|
|
style:
|
|
blinking: Always
|
|
# Thickness of the cursor (number from `0.0` to `1.0`)
|
|
thickness: 0.18
|
|
# Vi mode cursor style
|
|
vi_mode_style: Block
|
|
# Blink Interval
|
|
blink_interval: 400
|
|
|
|
# For themes -> https://github.com/aarowill/base16-alacritty
|
|
# Base16 Gruvbox dark, medium - alacritty color config
|
|
# Dawid Kurek (dawikur@gmail.com), morhetz (https://github.com/morhetz/gruvbox)
|
|
colors:
|
|
# Default colors
|
|
primary:
|
|
background: '0x282828'
|
|
foreground: '0xd5c4a1'
|
|
|
|
# Colors the cursor will use if `custom_cursor_colors` is true
|
|
cursor:
|
|
text: '0x282828'
|
|
cursor: '0xd5c4a1'
|
|
|
|
# Normal colors
|
|
normal:
|
|
black: '0x282828'
|
|
red: '0xfb4934'
|
|
green: '0xb8bb26'
|
|
yellow: '0xfabd2f'
|
|
blue: '0x83a598'
|
|
magenta: '0xd3869b'
|
|
cyan: '0x8ec07c'
|
|
white: '0xd5c4a1'
|
|
|
|
# Bright colors
|
|
bright:
|
|
black: '0x665c54'
|
|
red: '0xfe8019'
|
|
green: '0x3c3836'
|
|
yellow: '0x504945'
|
|
blue: '0xbdae93'
|
|
magenta: '0xebdbb2'
|
|
cyan: '0xd65d0e'
|
|
white: '0xfbf1c7'
|
|
|
|
draw_bold_text_with_bright_colors: false
|