From d3a284c77baaadba80a32c246f2d3e47a5ee5c96 Mon Sep 17 00:00:00 2001 From: z3rOR0ne Date: Wed, 18 Jan 2023 16:30:47 -0800 Subject: [PATCH] :sparkles: Got keybindings working in newsboat --- .config/newsboat/config | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/.config/newsboat/config b/.config/newsboat/config index 0b002fec..264b5d80 100644 --- a/.config/newsboat/config +++ b/.config/newsboat/config @@ -1,4 +1,27 @@ +# config file for newsboat rss reader +# sets color theme include /usr/share/doc/newsboat/contrib/colorschemes/nord + +# reloads on start, and loads 100 feeds at a time auto-reload yes reload-threads 100 + +# set to open links in librewolf browser macro y set browser "mpv %u" ; open-in-browser ; set browser "librewolf %u" + +# unbind keys +unbind-key ENTER +unbind-key j +unbind-key k +unbind-key J +unbind-key K +unbind-key g # bound to `sort` by default +unbind-key G # bound to `rev-sort` by default + +# bind keys - vim style +bind-key j down +bind-key k up +bind-key l open +bind-key h quit +bind-key g home +bind-key G end