zathurarc 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. # -*- mode: conf-space -*-
  2. # Default settings: ~/src/zathura/zathura/config.c
  3. # Names of special keys: ~/src/girara/girara/commands.c
  4. set font "liberation mono 12"
  5. include theme
  6. set recolor "true"
  7. # set recolor-keephue "true"
  8. set page-padding 10
  9. set scroll-wrap "true"
  10. set statusbar-home-tilde "true"
  11. map <C-.> scroll up
  12. map <C-e> scroll down
  13. map <C-o> scroll left
  14. map <C-u> scroll right
  15. map . scroll half-up
  16. map e scroll half-down
  17. map > scroll page-top
  18. map E scroll page-bottom
  19. map <A-.> scroll full-up
  20. map <A-e> scroll full-down
  21. map <PageUp> scroll half-up
  22. map <PageDown> scroll half-down
  23. map <BackSpace> scroll half-up
  24. map <Space> scroll half-down
  25. map h navigate previous
  26. map n navigate next
  27. map b adjust_window best-fit
  28. map H adjust_window best-fit
  29. map w adjust_window width
  30. map W adjust_window width
  31. map p rotate rotate-ccw
  32. map <Left> rotate rotate-ccw
  33. map , rotate rotate-cw
  34. map <Right> rotate rotate-cw
  35. map <C-s> search forward
  36. map <C-r> search backward
  37. map <A-g> goto
  38. map g reload
  39. map c recolor
  40. map u follow
  41. map <Return> toggle_presentation
  42. map i toggle_index
  43. map Q quit
  44. map [presentation] <Return> toggle_presentation
  45. # Index mode
  46. map [index] i toggle_index
  47. map [index] . navigate_index up
  48. map [index] e navigate_index down
  49. map [index] u navigate_index select
  50. map [index] + navigate_index expand
  51. map [index] - navigate_index collapse
  52. map [index] <Tab> navigate_index toggle
  53. # Unfortunately, there is no "toggle-all":
  54. map [index] <ShiftTab> navigate_index expand-all
  55. map [index] <A-ShiftTab> navigate_index collapse-all