-
Notifications
You must be signed in to change notification settings - Fork 1
/
alacritty.toml
89 lines (72 loc) · 2.77 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
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
[window]
dynamic_padding = true
decorations = 'None'
padding = { x = 8 }
[font]
normal = { family = 'Input Mono', style = 'Regular' }
size = 15
[colors]
line_indicator = { foreground = '#0f0f0f', background = '#ffd75f' }
footer_bar = { foreground = '#0f0f0f', background = '#ffd75f' }
[colors.normal]
red = '#ea6962'
green = '#a9b665'
yellow = '#d3ad5c'
blue = '#7daea3'
magenta = '#e491b2'
cyan = '#78bf84'
white = '#d4be98'
[colors.bright]
red = '#ea6962'
green = '#a9b665'
yellow = '#d3ad5c'
blue = '#7daea3'
magenta = '#e491b2'
cyan = '#78bf84'
white = '#d4be98'
[colors.primary]
foreground = '#d4be98'
background = '#292828'
[colors.search]
matches = { foreground = '#0f0f0f', background = '#ffd75f' }
focused_match = { foreground = '#0f0f0f', background = '#ffafd7' }
[colors.hints]
start = { foreground = '#0f0f0f', background = '#ffafd7' }
end = { foreground = '#0f0f0f', background = '#ffd75f' }
# [bell]
# command = { program = 'notify-send', args = ['-t', '1000', 'bell'] }
[selection]
save_to_clipboard = true
[cursor]
vi_mode_style = { shape = "Block" }
thickness = 0.3
[mouse]
hide_when_typing = true
[hints]
alphabet = 'fjdkslaeiwoghruxcz/vmtyqp'
[bell]
command.program = 'paplay'
command.args = ['/usr/share/sounds/freedesktop/stereo/bell.oga']
[keyboard]
bindings = [
{ key = 'Space', mods = 'Control|Shift', mode = '~Search', action = 'ReceiveChar' },
{ key = 'Space', mods = 'Control|Shift', mode = 'Vi|~Search', action = 'ReceiveChar' },
{ key = ',', mode = 'Vi|~Search', action = 'ReceiveChar' },
{ key = '0', mods = 'Control', action = 'ReceiveChar' },
{ key = 'k', mods = 'Control|Shift', mode = '~Alt', action = 'ScrollPageUp' },
{ key = 'j', mods = 'Control|Shift', mode = '~Alt', action = 'ScrollPageDown' },
{ key = 'k', mods = 'Shift|Alt', mode = '~Alt', action = 'ScrollHalfPageUp' },
{ key = 'j', mods = 'Shift|Alt', mode = '~Alt', action = 'ScrollHalfPageDown' },
{ key = 'k', mods = 'Control|Alt', mode = '~Alt', action = 'ScrollLineUp' },
{ key = 'j', mods = 'Control|Alt', mode = '~Alt', action = 'ScrollLineDown' },
{ key = '[', mods = 'Control|Alt', mode = '~Alt', action = 'ScrollToTop' },
{ key = ']', mods = 'Control|Alt', mode = '~Alt', action = 'ScrollToBottom' },
{ key = 'j', mods = 'Alt', mode = 'Search', action = 'SearchHistoryNext' },
{ key = 'k', mods = 'Alt', mode = 'Search', action = 'SearchHistoryPrevious' },
{ key = 'l', mods = 'Alt', mode = 'Search', action = 'SearchFocusNext' },
{ key = 'h', mods = 'Alt', mode = 'Search', action = 'SearchFocusPrevious' },
{ key = '=', mods = 'Control|Alt', action = 'ResetFontSize' },
{ key = 'Space', mods = 'Alt', mode = '~Search', action = 'ToggleViMode' },
{ key = ';', mods = 'Shift', mode = 'Vi|~Search', action = 'InlineSearchPrevious' },
# { key = 'Space', mods = 'Alt' , action = 'ClearLogNotice' },
]