diff options
author | Tyler Davis <tydavis@gmail.com> | 2022-12-01 06:06:22 +0000 |
---|---|---|
committer | Tyler Davis <tydavis@gmail.com> | 2022-12-01 06:06:22 +0000 |
commit | 2be84d1fa90fd9edd9cd92624d8c39092b3148e7 (patch) | |
tree | eac62e66c7b436ad582fae7ff585167cab3704c3 /.config | |
parent | abd65270e00261d71415c8b788a6c8ffa1848d20 (diff) | |
download | dotfiles-2be84d1fa90fd9edd9cd92624d8c39092b3148e7.tar.gz dotfiles-2be84d1fa90fd9edd9cd92624d8c39092b3148e7.zip |
pkg: add newsboat, upgrade to F37
Diffstat (limited to '.config')
-rw-r--r-- | .config/newsboat/config | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/.config/newsboat/config b/.config/newsboat/config new file mode 100644 index 0000000..d39a296 --- /dev/null +++ b/.config/newsboat/config @@ -0,0 +1,31 @@ +# general settings +auto-reload yes +max-items 100 +download-retries 4 +error-log ~/.local/share/newsboat/error.log +save-path ~/.local/share/newsboat/saved/ + +# reload frequency in minutes +reload-time 30 +reload-threads 6 # concurrent reload of feeds + +#colorscheme -- no colors +include /usr/share/doc/newsboat/contrib/colorschemes/plain + +# How to ignore articles +ignore-mode "display" # Do not show them. + +### VIM ### +# 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 + |