dotfiles

Personal dotfiles
git clone git://git.laack.co/dotfiles.git
Log | Files | Refs

config (1014B)


      1 # general settings
      2 auto-reload yes
      3 
      4 # solarized
      5 color background         default   default
      6 color listnormal         default   default
      7 color listnormal_unread  default   default
      8 color listfocus          black     cyan
      9 color listfocus_unread   black     cyan
     10 color info               default   black
     11 color article            default   default
     12 
     13 save-path "."
     14 
     15 unbind-key g
     16 bind-key g home
     17 unbind-key G 
     18 bind-key G end
     19 
     20 # highlights
     21 highlight article "^(Title):.*$" blue default
     22 highlight article "https?://[^ ]+" red default
     23 highlight article "\\[image\\ [0-9]+\\]" green default
     24 
     25 browser "sh -c 'lynx -dump %u | nvim -R -'"
     26 
     27 show-read-feeds no
     28 refresh-on-startup yes
     29 show-read-articles no
     30 reload-threads 100 # parallelize
     31 
     32 bind-key RIGHT open
     33 bind-key LEFT quit
     34 
     35 bind-key ^P up
     36 bind-key ^N down
     37 
     38 bind-key ^D halfpagedown 
     39 bind-key ^U halfpageup 
     40 bind-key ^H toggle-show-read-feeds 
     41 
     42 bind-key SPACE macro-prefix 
     43 macro q quit
     44 #auto-mark-read no
     45 confirm-mark-feed-read no
     46 confirm-mark-all-feeds-read no
     47 max-items 1000