summaryrefslogtreecommitdiff
path: root/alacritty/alacritty.yml
blob: 81bfae137b608e38e1df9a284cfe086cef015ceb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# See the releases on GitHub for the full default config file:
# https://github.com/alacritty/alacritty/releases

window:
    opacity: 0.9
    dynamic_padding: true

scrolling:
    history: 10000
    multiplier: 5

font:
    size: 11.0
    normal:
        family: DejaVu Sans Mono
        style: Regular
    bold:
        family: DejaVu Sans Mono
        style: Bold
    italic:
        family: DejaVu Sans Mono
        style: Oblique
    bold_italic:
        family: DejaVu Sans Mono
        style: Bold Oblique

# Otherwise colours don't get displayed as expected
draw_bold_text_with_bright_colors: true

# See /sys/kernel/module/vt/parameters
colors:
    primary:
        background: '#000000'
        foreground: '#eaeaea'
        bright_foreground: '#ffffff'
    normal:
        black:   '#000000'
        red:     '#aa0000'
        green:   '#00aa00'
        yellow:  '#aa5500'
        blue:    '#0000aa'
        magenta: '#aa00aa'
        cyan:    '#00aaaa'
        white:   '#aaaaaa'
    bright:
        black:   '#555555'
        red:     '#ff5555'
        green:   '#55ff55'
        yellow:  '#ffff55'
        blue:    '#5555ff'
        magenta: '#ff55ff'
        cyan:    '#55ffff'
        white:   '#ffffff'

cursor:
    vi_mode_style: Underline

working_directory: '/home/user'