blob: 27ebe22667f728fc443fecdac7dc2281c2d00cce (
plain)
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
|
# If a config.py file exists, this file is ignored unless it's explicitly loaded
# via config.load_autoconfig(). For more information, see:
# https://github.com/qutebrowser/qutebrowser/blob/main/doc/help/configuring.asciidoc#loading-autoconfigyml
# DO NOT edit this file by hand, qutebrowser will overwrite it.
# Instead, create a config.py - see :help for details.
config_version: 2
settings:
aliases:
global:
q: close
qa: quit
w: session-save
wq: quit --save
wqa: quit --save
bindings.key_mappings:
global:
<Ctrl-6>: <Ctrl-^>
<Ctrl-Enter>: <Ctrl-Return>
<Ctrl-I>: <Tab>
<Ctrl-J>: <Return>
<Ctrl-M>: <Return>
<Ctrl-[>: <Escape>
<Enter>: <Return>
<Shift-Enter>: <Return>
<Shift-Return>: <Return>
colors.completion.category.bg:
global: white
colors.completion.category.border.bottom:
global: white
colors.completion.category.border.top:
global: white
colors.completion.category.fg:
global: black
colors.completion.even.bg:
global: white
colors.completion.fg:
global: black
colors.completion.item.selected.bg:
global: '#E0EEEE'
colors.completion.item.selected.border.bottom:
global: white
colors.completion.item.selected.border.top:
global: white
colors.completion.item.selected.fg:
global: black
colors.completion.odd.bg:
global: white
colors.statusbar.command.bg:
global: white
colors.statusbar.command.fg:
global: black
colors.statusbar.normal.bg:
global: white
colors.statusbar.normal.fg:
global: black
colors.statusbar.passthrough.bg:
global: darkblue
colors.statusbar.url.fg:
global: black
colors.statusbar.url.hover.fg:
global: aqua
colors.statusbar.url.success.http.fg:
global: black
colors.statusbar.url.success.https.fg:
global: black
colors.statusbar.url.warn.fg:
global: yellow
colors.tabs.bar.bg:
global: '#555555'
colors.tabs.odd.fg:
global: black
colors.tabs.pinned.selected.odd.bg:
global: black
colors.tabs.pinned.selected.odd.fg:
global: white
colors.tabs.selected.odd.bg:
global: black
completion.open_categories:
global:
- searchengines
- quickmarks
- bookmarks
- history
- filesystem
fonts.completion.category:
global: bold default_size terminus
fonts.completion.entry:
global: bold default_size terminus
fonts.debug_console:
global: bold default_size terminus
fonts.default_family:
global: Iosevka Aile
fonts.default_size:
global: 15pt
fonts.downloads:
global: bold default_size terminus
fonts.hints:
global: bold default_size terminus
fonts.keyhint:
global: bold default_size terminus
fonts.messages.error:
global: bold default_size terminus
fonts.prompts:
global: bold default_size terminus
fonts.statusbar:
global: bold default_size terminus
fonts.tabs.selected:
global: bold default_size terminus
fonts.tabs.unselected:
global: bold default_size terminus
fonts.web.family.fixed:
global: Iosevka Term Curly
fonts.web.family.sans_serif:
global: Iosevka Aile
fonts.web.family.serif:
global: Iosevka Etoile
fonts.web.family.standard:
global: null
fonts.web.size.default:
global: 13
fonts.web.size.default_fixed:
global: 13
hints.chars:
global: arstdhneio
tabs.show:
global: never
tabs.tabs_are_windows:
global: true
url.default_page:
global: https://kagi.com
url.searchengines:
global:
DEFAULT: https://kagi.com/search?q={}
url.start_pages:
global: https://mccd.space
zoom.default:
global: 175%
|