diff options
| -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 = { |
