### Example zathurarc option settings Source: https://pwmt.org/projects/zathura/documentation Demonstrates various data types and escaping for configuration options. ```text set option1 5 set option2 2.0 set option3 hello set option4 hello\ world set option5 "hello world" set option6 "#00BB00" ``` -------------------------------- ### Set colors in zathurarc Source: https://pwmt.org/projects/zathura/documentation Examples of setting color options using quoted strings or escaped hash symbols. ```text set default-fg "#CCBBCC" set default-fg \#CCBBCC ``` -------------------------------- ### Launch Zathura with SyncTeX support Source: https://pwmt.org/projects/zathura/documentation Command to launch Zathura from an editor with SyncTeX parameters. ```bash zathura -x "gvim --servername vim -c \"let g:syncpdf='$1'\" --remote +%{line} %{input}" $file ``` -------------------------------- ### Include configuration files Source: https://pwmt.org/projects/zathura/documentation Syntax for including additional configuration files within zathurarc. ```text include another-config ``` -------------------------------- ### Map shortcut functions Source: https://pwmt.org/projects/zathura/documentation Use the map command to bind keys to specific functions with optional arguments. ```text map zoom in map zoom out ``` -------------------------------- ### Map keyboard shortcuts Source: https://pwmt.org/projects/zathura/documentation Syntax for mapping key bindings to shortcut functions in zathurarc. ```text map [mode] ``` -------------------------------- ### Map buffer commands Source: https://pwmt.org/projects/zathura/documentation Define mappings that act as buffer commands for specific input sequences. ```text map abc quit map test quit ``` -------------------------------- ### Set Zathura configuration options Source: https://pwmt.org/projects/zathura/documentation Syntax for changing configuration options in the zathurarc file. ```text set