-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.alacritty.yml
107 lines (88 loc) · 2.37 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
99
100
101
102
103
104
105
106
107
# rebelot/kanagawa.nvim
colors:
primary:
background: '0x1f1f28'
foreground: '0xdcd7ba'
normal:
black: '0x090618'
red: '0xc34043'
green: '0x76946a'
yellow: '0xc0a36e'
blue: '0x7e9cd8'
magenta: '0x957fb8'
cyan: '0x6a9589'
white: '0xc8c093'
bright:
black: '0x727169'
red: '0xe82424'
green: '0x98bb6c'
yellow: '0xe6c384'
blue: '0x7fb4ca'
magenta: '0x938aa9'
cyan: '0x7aa89f'
white: '0xdcd7ba'
selection:
background: '0x2d4f67'
foreground: '0xc8c093'
indexed_colors:
- { index: 16, color: '0xffa066' }
- { index: 17, color: '0xff5d62' }
# Mouse
mouse:
hide_when_typing: true
window:
padding:
x: 10
y: 5
dynamic_padding: true
decorations: full
# decorations: buttonless
# Sample Font configuration for font: Monoid.
# Feel free to use different font configuration family & face for each sections
font:
# Normal (roman) font face
normal:
family: Hack Nerd Font Mono
style: Regular
# Bold font face
bold:
family: Hack Nerd Font Mono
style: Bold
# Italic font face
italic:
family: Hack Nerd Font Mono
style: Italic
# Bold italic font face
bold_italic:
family: Hack Nerd Font Mono
style: Bold Italic
# Point size
size: 12.0
# Offset is the extra space around each character. `offset.y` can be thought of
# as modifying the line spacing, and `offset.x` as modifying the letter spacing
# I've given in 14 spacing which fits really well with my fonts, you may change it
# to your convenience but make sure to adjust 'glyph_offset' appropriately post that
offset:
x: 0
y: 0
# Note: This requires RESTART
# By default when you change the offset above you'll see an issue, where the texts are bottom
# aligned with the cursor, this is to make sure they center align.
# This offset should usually be 1/2 of the above offset-y being set.
glyph_offset:
x: 0
# Keeping this as half of offset to vertically align the text in cursor
y: 2
# Better font rendering for mac
use_thin_strokes: true
# Live config reload (changes require restart)
live_config_reload: true
selection:
semantic_escape_chars: ',│`|:"'' ()[]{}<>'
save_to_clipboard: true
cursor:
style: Block
vi_mode_style: Beam
unfocused_hollow: true
key_bindings:
- { key: N, mods: Command, action: SpawnNewInstance }