blob: 3ff2bd0abe585496d7d0d1245dfcc4e2171856b3 (
plain)
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
|
# Invert colors for dark theme (remapped to Ctrl+i)
map <C-i> recolor
# Clipboard
set selection-clipboard clipboard
# Scroll and Zoom step size
set scroll-step 80
set zoom-step 20
# Enable incremental search
set incremental-search true
# Hide the toolbar at startup
set guioptions none
# Navigation
map u scroll half-up
map d scroll half-down
# Zoom
map K zoom in
map J zoom out
# Document Control
map r reload
map R rotate
map p print
map D toggle_page_mode
# Font Setting
set font 'Inconsolata Normal 14'
#set font 'monospace normal 14'
# LaTeX Synctex Support
# Uncomment the line below if you use Zathura for LaTeX PDFs and want synctex support
set synctex true
# COLORS
#set recolor
set recolor-lightcolor \#0a001f
set recolor-darkcolor \#ace6f0
#set recolor-keephue
set default-bg \#0a001f
set default-fg \#ace6f0
set statusbar-fg \#ace6f0
set statusbar-bg \#0a001f
set inputbar-fg \#ace6f0
set inputbar-bg \#0a001f
set notification-error-bg \#0a001f
set notification-error-fg \#ace6f0
set notification-warning-bg \#0a001f
set notification-warning-fg \#ace6f0
set notification-bg \#0a001f
set notification-fg \#ace6f0
set index-bg \#0a001f
set index-fg \#ace6f0
set index-active-bg \#0a001f
set index-active-fg \#ace6f0
set render-loading-bg \#0a001f
set render-loading-fg \#ace6f0
set completion-bg \#0a001f
set completion-fg \#ace6f0
set completion-group-bg \#0a001f
set completion-group-fg \#ace6f0
set completion-highlight-bg \#0a001f
set completion-highlight-fg \#ace6f0
set completion-bg \#0a001f
set completion-fg \#ace6f0
#set highlight-color \#ace6f0
set recolor-reverse-video true # true = show images normally, false = invert colors with color hue
|