legacy-dots

alacritty.yml

2.1 kB
 1# to the user's home directory starting with `~/`.
 2#import:
 3#  - /path/to/alacritty.yml
 4#env:
 5  # TERM variable
 6  #
 7  # This value is used to set the `$TERM` environment variable for
 8  # each instance of Alacritty. If it is not present, alacritty will
 9  # check the local terminfo database and use `alacritty` if it is
10  # available, otherwise `xterm-256color` is used.
11  #TERM: alacritty
12
13window:
14  padding:
15    x: 10
16    y: 10
17
18
19# Font configuration (changes require restart)
20font:
21  # The size to use.
22  size: 13
23  # The n3ormal (roman) font face to use.
24  normal:
25    family: JetBrains Mono
26    # Style can be specified to pick a specific face.
27    style: Regular
28    
29  # The bold font face
30  bold:
31    family: JetBrains Mono
32    # Style can be specified to pick a specific face.
33    style: Bold
34
35  # The italic font face
36  italic:
37    family: JetBrains Mono
38    # Style can be specified to pick a specific face.
39    style: Italic
40
41# If `true`, bold text is drawn using the bright color variants.
42  draw_bold_text_with_bright_colors: true
43
44# Base16 Material Darker 256 - alacritty color config
45# Nate Peterson
46colors:
47  # Default colors
48  primary:
49    background: '0x212121'
50    foreground: '0xeeffff'
51
52  # Colors the cursor will use if `custom_cursor_colors` is true
53  cursor:
54    text: '0x212121'
55    cursor: '0xeeffff'
56
57  # Normal colors
58  normal:
59    black:   '0x212121'
60    red:     '0xf07178'
61    green:   '0xc3e88d'
62    yellow:  '0xffcb6b'
63    blue:    '0x82aaff'
64    magenta: '0xc792ea'
65    cyan:    '0x89ddff'
66    white:   '0xeeffff'
67
68  # Bright colors
69  bright:
70    black:   '0x4a4a4a'
71    red:     '0xf07178'
72    green:   '0xc3e88d'
73    yellow:  '0xffcb6b'
74    blue:    '0x82aaff'
75    magenta: '0xc792ea'
76    cyan:    '0x89ddff'
77    white:   '0xffffff'
78
79  indexed_colors:
80    - { index: 16, color: '0xf78c6c' }
81    - { index: 17, color: '0xff5370' }
82    - { index: 18, color: '0x303030' }
83    - { index: 19, color: '0x353535' }
84    - { index: 20, color: '0xb2ccd6' }
85    - { index: 21, color: '0xeeffff' }
86
87cursor:
88  # Cursor style
89  style:
90    shape: Block
91    blinking: On
92    blink_interval: 500
93