dotfiles/.config/newsboat/config

64 lines
1.9 KiB
INI
Raw Permalink Normal View History

2019-05-28 17:44:30 +02:00
# All feeds will be automatically reloaded at start up
# and then continuously after a certain time has passed.
2022-10-29 00:27:38 +02:00
auto-reload yes
2019-05-28 17:44:30 +02:00
# Set the browser command to use when opening an article in the browser.
2019-09-25 20:07:56 +02:00
browser "firefox %u"
2019-05-28 17:44:30 +02:00
# This format specifies the date/time format in the article list.
datetime-format "%Y-%m-%d"
# User errors will be logged to this file.
2019-09-25 20:07:56 +02:00
error-log "~/.local/share/newsboat/error.log"
2019-05-28 17:44:30 +02:00
# Specifies which feed property shall be used for sorting.
2022-10-29 00:27:38 +02:00
feed-sort-order title
2019-05-28 17:44:30 +02:00
# Format string that is used for formatting notifications.
notify-format "%d new articles"
# The configured program will be executed if new articles arrived.
2019-09-25 20:07:56 +02:00
notify-program "~/.config/newsboat/notif.sh"
2019-05-28 17:44:30 +02:00
2019-05-31 11:22:56 +02:00
# The number of parallel reload threads that
# shall be started when all feeds are reloaded.
reload-threads 4
2019-05-28 17:44:30 +02:00
# The default path where articles shall be saved to.
save-path "~/Documents/RSS"
# This value will be used as HTTP User-Agent header.
2022-10-29 00:27:38 +02:00
user-agent "Mozilla/5.0 (Linux x86_64) newsboat/2.29"
2019-05-28 17:44:30 +02:00
# Keybindings {{{
bind-key j next
bind-key k prev
bind-key J next-feed
bind-key K prev-feed
bind-key j down article
bind-key k up article
bind-key J next article
bind-key K prev article
# }}}
# Colors based on gruvbox {{{
color background color187 color235
color listnormal color187 color235
color listfocus color187 color237 bold
color listnormal_unread color107 color235
color listfocus_unread color107 color237 bold
color info color109 color233
color article color187 color235
2019-05-31 11:22:56 +02:00
search-highlight-colors color109 color237 underline
2019-05-28 17:44:30 +02:00
highlight article "^[A-Z][a-z]+:" color214 color235 bold
highlight article "^\\[[0-9]+\\]:" color203 color235 bold
highlight article "(https?|ftp)://[^ ]+" color175 color235
highlight article " \\(link\\)$" color235 color235
# }}}
2019-09-25 20:07:56 +02:00
include "~/.config/newsboat/filters"
2019-05-28 17:44:30 +02:00
2019-09-25 20:07:56 +02:00
# vim:ft=conf:fdm=marker:fdl=1: