-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathalacritty.yml
98 lines (90 loc) · 2.35 KB
/
alacritty.yml
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
# Configuration for Alacritty, the GPU enhanced terminal emulator.
# Any items in the `env` entry below will be added as
# environment variables. Some entries may override variables
# set by alacritty itself.
env:
# TERM: alacritty
LANG: "en_US.UTF-8"
LC_CTYPE: en_US.UTF-8
# Font configuration
font:
# Normal (roman) font face
normal:
# Font family
#
# Default:
# - (macOS) Menlo
# - (Linux/BSD) monospace
# - (Windows) Consolas
# family: "monospace"
# The `style` can be specified to pick a specific face.
style: Regular
# Point size
size: 14.0
# Thin stroke font rendering (macOS only)
# Thin strokes are suitable for retina displays, but for non-retina screens
# it is recommended to set `use_thin_strokes` to `false`
#
# macOS >= 10.14.x:
#
# If the font quality on non-retina display looks bad then set
# `use_thin_strokes` to `true` and enable font smoothing by running the
# following command:
# `defaults write -g CGFontRenderingFontSmoothingDisabled -bool NO`
#
# This is a global setting and will require a log out or restart to take
# effect.
use_thin_strokes: true
# Colors (Tomorrow Night Bright)
schemes:
tomorrow_night: &tomorrow_night # Default colors
primary:
background: "#282828"
foreground: "#d8d8d8"
# Colors the cursor will use if `custom_cursor_colors` is true
cursor:
text: "#0a0a0a"
cursor: "#d8d8d8"
# Normal colors
normal:
black: "#181818"
red: "#ab4642"
green: "#a1b56c"
yellow: "#f7ca88"
blue: "#7cafc2"
magenta: "#ba8baf"
cyan: "#86c1b9"
white: "#d8d8d8"
# Bright colors
bright:
black: "#585858"
red: "#ab4642"
green: "#a1b56c"
yellow: "#f7ca88"
blue: "#7cafc2"
magenta: "#ba8baf"
cyan: "#86c1b9"
white: "#f8f8f8"
my_theme: &my_theme
primary:
background: "0x1d1d1d"
foreground: "0xc0c0c0"
normal:
black: "0x212121"
red: "0xd75f5f"
green: "0xa1b56c"
yellow: "0xdab997"
blue: "0x83adad"
magenta: "0xfa4a43"
cyan: "0x89b482"
white: "0xf8f8f8"
bright:
black: "0x212121"
red: "0xd75f5f"
green: "0xa1b56c"
yellow: "0xdab997"
blue: "0x83adad"
magenta: "0xfa4a43"
cyan: "0x89b482"
white: "0xf8f8f8"
colors: *my_theme