🐛 fix(amfora): Add required config

Amfora seems to require something in the default config structure to
run. I don't care to figure out exactly what is required at the moment.
This commit is contained in:
punkfairie 2024-11-03 09:39:37 -08:00
parent c16c6c61af
commit c7194ff811

View file

@ -29,7 +29,7 @@
bullets = true
show_link = false
max_width = 80
downloads = ""
downloads = '''
page_max_size = 2097152 # 2 MiB
page_max_time = 10
scrollbar = "auto"
@ -39,25 +39,35 @@
# TODO: Change based on current theme.
highlight_style = "rose-pine"
[url-handlers]
# Defaults {{{
[auth]
[auth.certs]
[auth.keys]
[keybindings]
[url-handlers]
other = 'default'
# }}}
[url-prompts]
[cache]
# Defaults {{{
max_size = 0
max_pages = 30
timeout = 1800
# }}}
[proxies]
[subscriptions]
# Defaults {{{
popup = true
update_interval = 1800
workers = 3
entries_per_page = 20
header = true
[theme]
# }}}
'';
}