29 lines
677 B
Plaintext
29 lines
677 B
Plaintext
# Set some settings
|
|
set global-section-name All
|
|
set color-list-item-important-fg black
|
|
set color-list-item-important-bg red
|
|
|
|
set color-list-item-unread-fg blue
|
|
set color-list-feed-unread-fg blue
|
|
set color-list-section-unread-fg blue
|
|
|
|
set scrolloff 2
|
|
|
|
# Remove some binds
|
|
unbind g
|
|
unbind y
|
|
unbind v
|
|
|
|
bind s status-history-menu
|
|
|
|
# Bind some binds
|
|
bind y exec echo %l | xsel -b
|
|
bind b exec setsid -f icecat %l >/dev/null 2>&1 & disown
|
|
bind m exec setsid -f mpv %l >/dev/null 2>&1 & disown
|
|
bind v exec setsid -f nsxiv-url %l >/dev/null 2>&1 & disown
|
|
bind c exec kak ~/.config/newsraft/config
|
|
bind gk select-first
|
|
bind gj select-last
|
|
bind R reload-all
|
|
bind z exec ~/bin/bookmark %l
|