-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathalacritty.yml
executable file
·114 lines (90 loc) · 2.67 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
108
109
110
111
112
113
114
#
# Spydr06's configuration for Alacritty-ligatures, the GPU enhanced terminal emulator
# https://gihub.com/spydr06/dotfiles.git
#
env:
TERM: xterm-256color
EDITOR: nvim
_JAVA_AWT_WM_NONREPARENTING: "1"
window:
padding:
x: 20
y: 20
title: Alacritty
class:
instance: Alacritty
general: Alacritty
gtk_theme_variant: dark
opacity: 1.0
scrolling:
history: 10000
font:
normal:
family: "Cascadia Code"
style: Normal
bold:
family: "Cascadia Code"
style: Bold
italic:
family: "Cascadia Code"
style: Italic
bold_italic:
family: "Cascadia Code"
style: Bold Italic
size: 10
offset:
x: 0
y: 1
draw_bold_text_with_bright_colors: true
colors:
# Default colors
primary:
background: '0x000000'
foreground: '0xeaeaea'
# Normal colors
normal:
black: '0x000000'
red: '0xd54e53'
green: '0xb9ca4a'
yellow: '0xe78c45'
blue: '0x7aa6da'
magenta: '0xc397d8'
cyan: '0x70c0b1'
white: '0xf0f0f0'
# Bright colors
bright:
black: '0x666666'
red: '0xff3334'
green: '0x9ec400'
yellow: '0xe7c547'
blue: '0x7aa6da'
magenta: '0xb777e0'
cyan: '0x54ced6'
white: '0xffffff'
dynamic_title: true
cursor:
style:
shape: Underline
unfocused_hollow: false
blinking: Always
vi_mode_style: Underline
blink_interval: 250
live_config_reload: true
working_directory: None
key_bindings:
- { key: V, mods: Control|Shift, action: Paste }
- { key: C, mods: Control|Shift, action: Copy }
- { key: Insert, mods: Shift, action: PasteSelection }
- { key: Key0, mods: Control, action: ResetFontSize }
- { key: Equals, mods: Control, action: IncreaseFontSize }
- { key: Plus, mods: Control, action: IncreaseFontSize }
- { key: Minus, mods: Control, action: DecreaseFontSize }
- { key: Minus, mods: Control, action: DecreaseFontSize }
- { key: Paste, action: Paste }
- { key: Copy, action: Copy }
- { key: L, mods: Control, action: ClearLogNotice }
- { key: L, mods: Control, chars: "\x0c" }
- { key: PageUp, mods: Shift, action: ScrollPageUp, mode: ~Alt }
- { key: PageDown, mods: Shift, action: ScrollPageDown, mode: ~Alt }
- { key: Home, mods: Shift, action: ScrollToTop, mode: ~Alt }
- { key: End, mods: Shift, action: ScrollToBottom, mode: ~Alt }