-
Notifications
You must be signed in to change notification settings - Fork 0
/
alacritty.yml
86 lines (72 loc) · 1.84 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
#
# modified 2021-06-28
#
env:
# This value is used to set the `$TERM` environment variable for
# each instance of Alacritty. If it is not present, alacritty will
# check the local terminfo database and use `alacritty` if it is
# available, otherwise `xterm-256color` is used.
TERM: xterm-256color
window:
# Spread additional padding evenly around the terminal content.
padding:
x: 10
y: 40
# Remove buttons
decorations: none
# Open in full screen
startup_mode: SimpleFullscreen
# Dimensions if not SimpleFullscreen
dimensions:
columns: 140
lines: 38
# Make background slightly transparent
window.opacity: 0.92
cursor:
# Block Underline or Beam
style: Block
font:
normal:
# Needs to be powerline font if using zsh theme with powerline
family: Source Code Pro for Powerline
# Font size
size: 17
# Better font rendering for mac
use_thin_strokes: true
# Colors (Gruvbox Material Dark Medium)
colors:
primary:
background: '0x282828'
foreground: '0xdfbf8e'
normal:
black: '0x665c54'
red: '0xea6962'
green: '0xa9b665'
yellow: '0xe78a4e'
blue: '0x7daea3'
magenta: '0xd3869b'
cyan: '0x89b482'
white: '0xdfbf8e'
bright:
black: '0x928374'
red: '0xea6962'
green: '0xa9b665'
yellow: '0xe3a84e'
blue: '0x7daea3'
magenta: '0xd3869b'
cyan: '0x89b482'
white: '0xdfbf8e'
selection:
# This string contains all characters that are used as separators for
# "semantic words" in Alacritty.
semantic_escape_chars: ",│`|:\"' ()[]{}<>\t"
# When true, selected text will be copied to the primary clipboard
save_to_clipboard: true
# Login shell with arguments
shell:
program: /bin/zsh
args:
- --login
# Startup directory, unset or None for home directory
working_directory: None
alt_send_esc: false