diff options
| author | Mike Vink <> | 2023-04-17 08:55:32 +0200 |
|---|---|---|
| committer | Mike Vink <> | 2023-04-17 08:55:32 +0200 |
| commit | b040b308562e7baeda5d4d829e9dfaa9d234d27c (patch) | |
| tree | 4841decaba4b0250be45c08819b0eeb15226a10d | |
| parent | 35aa3ecb6393e15e29b3c0157ff6ddb7dc67c4e5 (diff) | |
fix newsboat colors
| -rw-r--r-- | home.nix | 31 |
1 files changed, 31 insertions, 0 deletions
@@ -31,6 +31,37 @@ enable = true; autoReload = true; urls = [{url = "https://github.com/rancher/rancher/releases.atom";}]; + extraConfig = '' + # general settings + max-items 50 + + # 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 + color listfocus black cyan + color listfocus_unread black cyan + 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 + ''; }; programs.bash = { |
