🐛 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:
parent
c16c6c61af
commit
c7194ff811
1 changed files with 16 additions and 6 deletions
|
@ -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]
|
||||
# }}}
|
||||
'';
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue