From: Simon Ruderich Date: Tue, 24 Jan 2012 17:11:02 +0000 (+0100) Subject: zathurarc: Add, basic configuration file. X-Git-Url: https://ruderich.org/simon/gitweb/?p=config%2Fdotfiles.git;a=commitdiff_plain;h=bd74707b46ada50095b544c02ad313efeb80b922 zathurarc: Add, basic configuration file. --- diff --git a/setup.sh b/setup.sh index 961e465..efd7255 100755 --- a/setup.sh +++ b/setup.sh @@ -45,3 +45,7 @@ fi if installed xpdf; then link xpdfrc ~/.xpdfrc fi +if installed zathura; then + mkdir -p ~/.config/zathura + link zathurarc ~/.config/zathura/zathurarc +fi diff --git a/zathurarc b/zathurarc new file mode 100644 index 0000000..4fa53df --- /dev/null +++ b/zathurarc @@ -0,0 +1,25 @@ +# zathura (pdf viewer) configuration file. + + +# SETTINGS + +# Save position and zoom level of opened files. +set save_position true +set save_zoom_level true + +# Don't display status and inputbar for maximum space efficiency. +set show_statusbar false +set show_inputbar false + + +# MAPPINGS + +# Quit zathura. +map q quit + +# Zoom in and out. +map + zoom in +map - zoom out + +# Reload current PDF (in case autoreload doesn't work). +map r reload