0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
| # ~/.config/zathurarc
# General Settings
set guioptions "shv"
set page-padding 1
set adjust-open "best-fit"
set window-height 3000
set window-width 3000
set scroll-wrap true
set scroll-page-aware true
set statusbar-home-tilde true
set window-title-home-tilde true
set statusbar-page-percent true
set statusbar-basename true
set incremental-search true
set selection-clipboard "clipboard"
set database "sqlite"
# Notification Settings
set notification-error-bg "rgba(242,229,188,1)" # bg
set notification-error-fg "rgba(157,0,6,1)" # bright:red
set notification-warning-bg "rgba(242,229,188,1)" # bg
set notification-warning-fg "rgba(181,118,20,1)" # bright:yellow
set notification-bg "rgba(242,229,188,1)" # bg
set notification-fg "rgba(121,116,14,1)" # bright:green
# Completion Settings
set completion-bg "rgba(213,196,161,1)" # bg2
set completion-fg "rgba(60,56,54,1)" # fg
set completion-group-bg "rgba(235,219,178,1)" # bg1
set completion-group-fg "rgba(146,131,116,1)" # gray
set completion-highlight-bg "rgba(7,102,120,1)" # bright:blue
set completion-highlight-fg "rgba(213,196,161,1)" # bg2
# Index Mode Settings
set index-bg "rgba(213,196,161,1)" # bg2
set index-fg "rgba(60,56,54,1)" # fg
set index-active-bg "rgba(7,102,120,1)" # bright:blue
set index-active-fg "rgba(213,196,161,1)" # bg2
# Input Bar Settings
set inputbar-bg "rgba(242,229,188,1)" # bg
set inputbar-fg "rgba(60,56,54,1)" # fg
# Status Bar Settings
set statusbar-bg "rgba(213,196,161,1)" # bg2
set statusbar-fg "rgba(60,56,54,1)" # fg
# Highlight Settings
set highlight-color "rgba(181,118,20,0.5)" # bright:yellow
set highlight-active-color "rgba(175,58,3,0.5)" # bright:orange
# Default Colors
set default-bg "rgba(242,229,188,1)" # bg
set default-fg "rgba(60,56,54,1)" # fg
set render-loading true
set render-loading-bg "rgba(242,229,188,1)" # bg
set render-loading-fg "rgba(60,56,54,1)" # fg
# Recolor Book Content
set recolor-lightcolor "rgba(242,229,188,1)" # bg
set recolor-darkcolor "rgba(60,56,54,1)" # fg
set recolor "true"
set recolor-keephue "true" # keep original color
# Keybindings
map r reload
map R rotate
map c recolor
map p print
map g goto top
map <C-b> feedkeys ":bmark "
map u follow
map <Return> toggle_presentation
map [presentation] <Return> toggle_presentation
# Index Mode
map [index] i toggle_index
map [index] <Tab> navigate_index toggle
map [index] <ShiftTab> navigate_index expand-all
|