-
Notifications
You must be signed in to change notification settings - Fork 0
/
.alacritty.toml
57 lines (46 loc) · 1.2 KB
/
.alacritty.toml
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
# For reference: https://alacritty.org/config-alacritty.html
# Colors (Solarized Light) from https://github.com/alacritty/alacritty-theme/blob/master/themes/solarized_light.toml
# Default colors
[colors.primary]
background = '#fdf6e3'
foreground = '#586e75'
# Normal colors
[colors.normal]
black = '#073642'
red = '#dc322f'
green = '#859900'
yellow = '#b58900'
blue = '#268bd2'
magenta = '#d33682'
cyan = '#2aa198'
white = '#eee8d5'
# Bright colors
[colors.bright]
black = '#002b36'
red = '#cb4b16'
green = '#586e75'
yellow = '#657b83'
blue = '#839496'
magenta = '#6c71c4'
cyan = '#93a1a1'
white = '#fdf6e3'
# --
# custom cursor for alacritty+zsh reasons (zsh reverse, cursor reverses again)
# Watching: https://github.com/alacritty/alacritty/issues/5662
# Also: https://stackoverflow.com/questions/61776558/zsh-in-vi-mode-how-to-change-color-scheme
[colors.cursor]
cursor = "0x073642"
text = "0xeee8d5"
[cursor.style]
blinking = "Never"
# True color support: https://gist.github.com/andersevenrud/015e61af2fd264371032763d4ed965b6
[env]
TERM = "xterm-256color"
[font]
# default is 11
size = 13.0
[font.normal]
# family = Monaco
family = "Monego Nerd Font"
[window]
decorations = "none"