diff options
Diffstat (limited to '.config')
-rw-r--r-- | .config/newsboat/config | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/.config/newsboat/config b/.config/newsboat/config new file mode 100644 index 0000000..9f13142 --- /dev/null +++ b/.config/newsboat/config @@ -0,0 +1,42 @@ +# color background white black +# color listnormal white black +# color listfocus white blue bold +# color listnormal_unread white black bold +# color listfocus_unread white blue bold +# color info black blue bold +# color article white black +# general settings +auto-reload yes +# max-items 50 + +# externel browser +# browser "/usr/local/bin/w3m %u" +# macro m set browser "/usr/local/bin/mpv %u"; open-in-browser ; set browser "/usr/local/bin/w3m %u" +# macro l set browser "/usr/local/bin/firefox %u"; open-in-browser ; set browser "/usr/local/bin/w3m %u" + +# unbind keys +unbind-key ENTER +unbind-key j +unbind-key k +unbind-key J +unbind-key K + +# bind keys - vim style +bind-key j down +bind-key k up +bind-key l open +bind-key h quit + +# solarized +color background default default +color listnormal default default +color listnormal_unread default default bold +color listfocus black cyan +color listfocus_unread black cyan bold +color info default black +color article default default + +# highlights +highlight article "^(Title):.*$" blue default +highlight article "https?://[^ ]+" red default +highlight article "\\[image\\ [0-9]+\\]" green default |