blob: a747b00123bed67cc37c89d1b0560b30578d4908 (
plain) (
blame)
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
# zathurarc-dark
#set font "inconsolata 9"
# set default-bg "#151515" #00
# set default-fg "#202020" #01
#
# set statusbar-fg "#B0B0B0" #04
# set statusbar-bg "#202020" #01
#
# set inputbar-bg "#151515" #00 currently not used
# set inputbar-fg "#303030" #02
#
# set notification-error-bg "#AC4142" #08
# set notification-error-fg "#1C1C1C" #00
#
# set notification-warning-bg "#AC4142" #08
# set notification-warning-fg "#1C1C1C" #00
#
# set highlight-color "#6790EB" #0A
# set highlight-active-color "#6A9FB5" #0D
#
# set completion-highlight-fg "#303030" #02
# set completion-highlight-bg "#75B5AA" #0C
#
# set completion-bg "#303030" #02
# set completion-fg "#75B5AA" #0C
#
# set notification-bg "#2F343F" #0B
# set notification-fg "#1C1C1C" #00
#
# set recolor-lightcolor "#151515" #00
# set recolor-darkcolor "#E0E0E0" #06
# set recolor "true"
#
## setting recolor-keep true will keep any color your pdf has.
## if it is false, it'll just be black and white
#set recolor-keephue "true"
# Rest of your configs go here:
set selection-clipboard clipboard
set zoom-step 10
set scroll-step 40
set scroll-hstep 5
set first-page-column 1:2:1:2:1:2
set pages-per-row 2
set page-padding 2
#set show-statusbar false
set guioptions n #none
#set advance-pages-per-row true
set pages-per-row 1
set render-loading true
map <C-i> zoom in
map <C-o> zoom out
#map f feedkeys "133zz"
#map f zoom specific 133
set n-completion-items 25
set recolor-keephue true
set scroll-page-aware true
set adjust-open best-fit
set smooth-scroll true
set statusbar-home-tilde true
set window-title-home-tilde true
set incremental-search true
#map w adjust_window best-fit
#map [normal] a focus_inputbar ":bmark "
#map [normal] b focus_inputbar ":blist "
#map [normal] d focus_inputbar ":bdelete "
#map [fullscreen] a adjust_window best-fit
#map [fullscreen] s adjust_window with
map [normal] l jumplist backward
map [normal] L jumplist forward
map <C-1> feedkeys ":set pages-per-row 1"<Return>
map <C-2> feedkeys ":set pages-per-row 2"<Return>
map <C-3> feedkeys ":set pages-per-row 3"<Return>
map <C-4> feedkeys ":set pages-per-row 4"<Return>
map t toggle_page_mode
map T feedkeys ":set pages-per-row "
set font "San Francisco Display 12"
set default-bg "#151515"
set default-fg "#1C1C1C"
set statusbar-fg "#B0B0B0"
set statusbar-bg "#202020"
set inputbar-bg "#151515"
set inputbar-fg "#1C1C1C"
set notification-error-bg "#AC4142"
set notification-error-fg "#151515"
set notification-warning-bg "#AC4142"
set notification-warning-fg "#151515"
set highlight-color "#6790EB"
set highlight-active-color "#6A9FB5"
set completion-highlight-fg "#303030"
set completion-highlight-bg "#75B5AA"
set completion-bg "#303030"
set completion-fg "#75B5AA"
set notification-bg "#2F343F"
set notification-fg "#FFFFFF"
set recolor-lightcolor "#151515"
set recolor-darkcolor "#E0E0E0"
|