diff options
author | eug-vs <eugene@eug-vs.xyz> | 2021-10-12 23:21:20 +0300 |
---|---|---|
committer | eug-vs <eugene@eug-vs.xyz> | 2021-10-12 23:21:20 +0300 |
commit | 164e584a7ff91842a4d4ac3f7641323102f3e786 (patch) | |
tree | 043fb15c6f40178a05df80264cd97aeadd7ccd59 /newsboat | |
parent | e89a71a377a1879365a6eab57ef34ef81256cd80 (diff) | |
download | dotfiles-164e584a7ff91842a4d4ac3f7641323102f3e786.tar.gz |
feat(news): add newsboat config
Diffstat (limited to 'newsboat')
-rw-r--r-- | newsboat/.config/newsboat/config | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/newsboat/.config/newsboat/config b/newsboat/.config/newsboat/config new file mode 100644 index 0000000..c278ad7 --- /dev/null +++ b/newsboat/.config/newsboat/config @@ -0,0 +1,46 @@ +#show-read-feeds no +auto-reload yes + +external-url-viewer "urlscan -dc -r 'linkhandler {}'" + +bind-key j down +bind-key k up +bind-key j next articlelist +bind-key k prev articlelist +bind-key J next-feed articlelist +bind-key K prev-feed articlelist +bind-key G end +bind-key g home +bind-key d pagedown +bind-key u pageup +bind-key l open +bind-key h quit +bind-key a toggle-article-read +bind-key n next-unread +bind-key N prev-unread +bind-key D pb-download +bind-key U show-urls +bind-key x pb-delete + +color listnormal cyan default +color listfocus black yellow standout bold +color listnormal_unread blue default +color listfocus_unread yellow default bold +color info red black bold +color article white default + +browser "brave %u" +macro m set browser "mpv %u"; open-in-browser ; set browser "brave %u" + +highlight all "---.*---" yellow +highlight feedlist ".*(0/0))" black +highlight article "(^Feed:.*|^Title:.*|^Author:.*)" cyan default bold +highlight article "(^Link:.*|^Date:.*)" default default +highlight article "https?://[^ ]+" green default +highlight article "^(Title):.*$" blue default +highlight article "\\[[0-9][0-9]*\\]" magenta default bold +highlight article "\\[image\\ [0-9]+\\]" green default bold +highlight article "\\[embedded flash: [0-9][0-9]*\\]" green default bold +highlight article ":.*\\(link\\)$" cyan default +highlight article ":.*\\(image\\)$" blue default +highlight article ":.*\\(embedded flash\\)$" magenta default |