Files
dotfiles/.config/zathura/zathurarc

55 lines
1.5 KiB
Plaintext

# Use system clipboard for selection.
set selection-clipboard "clipboard"
# Dark colors and transparency
set default-bg "rgba(25, 25, 25, 0.5)"
set statusbar-bg "rgba(25, 25, 25, 0.5)"
set notification-bg "#000000"
set notification-fg "#FFFFFF"
# Change the greenish accent color (#9FBC00) to bright yellow (#FCE94F)
set completion-highlight-bg "rgba(252, 233, 79, 0.5)"
set inputbar-fg "rgba(252, 233, 79, 1)"
set highlight-color "rgba(252, 233, 79, 0.5)"
set index-active-bg "rgba(252, 233, 79, 0.5)"
# Set the foreground to something that can be read on highlight-color
set highlight-fg "#000000"
# Show statusbar and vertical scrollbar
set guioptions "sv"
# Increase the vertical scroll step size
set scroll-step 100
# Short $HOME with a tilde in file path
set statusbar-home-tilde true
# Invert colors per default. Toggle with `i`
map i recolor
set recolor true
set recolor-lightcolor "rgba(25, 25, 25, 0)"
set recolor-darkcolor "#FFFFFF"
set recolor-keephue true
set recolor-reverse-video true
# vim-like fold mappings in index
map [index] zo navigate-index expand
map [index] zc navigate-index collapse
map [index] zR navigate-index expand-all
map [index] zM navigate-index collapse-all
# Recoloring should also work in presentation mode
map [presentation] i recolor
# Navigate with vim bindings in presentation mode
map [presentation] h navigate previous
map [presentation] k navigate previous
map [presentation] j navigate next
map [presentation] l navigate next
# Search while typing
# set incremental-search true
# vimtex
set synctex true