-
Notifications
You must be signed in to change notification settings - Fork 17
/
zathurarc
128 lines (109 loc) · 4.2 KB
/
zathurarc
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
# ░▀▀█░█▀█░▀█▀░█░█░█░█░█▀▄░█▀█░█▀▄░█▀▀
# ░▄▀░░█▀█░░█░░█▀█░█░█░█▀▄░█▀█░█▀▄░█░░
# ░▀▀▀░▀░▀░░▀░░▀░▀░▀▀▀░▀░▀░▀░▀░▀░▀░▀▀▀
set selection-clipboard clipboard
set window-title-home-tilde true
set statusbar-home-tilde true
set page-padding 1
set font "Open Sans normal 16"
set window-height 1024
set window-width 768
set render-loading false
set adjust-open "best-fit"
# Fix following links feature
set sandbox none
# already default
set synctex true
set synctex-editor-command "texlab inverse-search -i %{input} -l %{line}"
set dbus-service true
set database "sqlite"
# Navigation
map g goto top
map <C-g> scroll page-top
map <C-G> scroll page-bottom
map u scroll half-up
map d scroll half-down
map D toggle_page_mode
map <C-u> navigate previous
map <C-d> navigate next
map r reload
map R rotate
map i recolor
map p print
map K zoom in
map J zoom out
# stop at page boundaries
set scroll-page-aware true
set scroll-full-overlap 0.01
set scroll-step 50
set incremental-search true
set guioptions ""
map b toggle_statusbar
map [normal] ZZ quit
map [normal] ZQ quit
set recolor false
set recolor-keephue true
# Base16 Gruvbox
set notification-error-bg "#282828" # bg
set notification-error-fg "#fb4934" # bright:red
set notification-warning-bg "#282828" # bg
set notification-warning-fg "#fabd2f" # bright:yellow
set notification-bg "#282828" # bg
set notification-fg "#b8bb26" # bright:green
set completion-bg "#504945" # bg2
set completion-fg "#ebdbb2" # fg
set completion-group-bg "#3c3836" # bg1
set completion-group-fg "#928374" # gray
set completion-highlight-bg "#83a598" # bright:blue
set completion-highlight-fg "#504945" # bg2
# Define the color in index mode
set index-bg "#504945" # bg2
set index-fg "#ebdbb2" # fg
set index-active-bg "#83a598" # bright:blue
set index-active-fg "#504945" # bg2
set inputbar-bg "#282828" # bg
set inputbar-fg "#ebdbb2" # fg
set statusbar-bg "#504945" # bg2
set statusbar-fg "#ebdbb2" # fg
set highlight-color rgba(250,189,47,0.5) # bright:yellow
set highlight-active-color rgba(254,128,25,0.5) # bright:orange
# set default-bg "#282828" # bg
set default-bg rgba(40,40,40,0.7) # bg
set default-fg "#ebdbb2" # fg
set render-loading true
set render-loading-bg "#282828" # bg
set render-loading-fg "#ebdbb2" # fg
# Recolor book content's color
# set recolor-lightcolor "#282828" # bg
set recolor-lightcolor rgba(40,40,40,0.0) # bg(transparent)
set recolor-darkcolor "#d4be98" # fg0
# # Base16 Solarized Dark
# # Author: Ethan Schoonover (modified by aramisgithub)
# set default-bg "#002b36"
# set default-fg "#073642"
# set statusbar-fg "#839496"
# set statusbar-bg "#586e75"
# set inputbar-bg "#002b36"
# set inputbar-fg "#fdf6e3"
# set notification-bg "#002b36"
# set notification-fg "#fdf6e3"
# set notification-error-bg "#002b36"
# set notification-error-fg "#dc322f"
# set notification-warning-bg "#002b36"
# set notification-warning-fg "#dc322f"
# set highlight-color "#b58900"
# set highlight-active-color "#268bd2"
# set completion-bg "#073642"
# set completion-fg "#268bd2"
# set completion-highlight-fg "#fdf6e3"
# set completion-highlight-bg "#268bd2"
# set recolor-lightcolor "#002b36" # base03
# set recolor-darkcolor "#eee8d5" # base2
# set recolor-lightcolor "#073642" # base02
# set completion-group-bg "#002b36" # base03
# set completion-group-fg "#839496" # base0
# set index-bg "#073642" # base02
# set index-fg "#93a1a1" # base1
# set index-active-bg "#586e75" # base01
# set index-active-fg "#eee8d5" # base2
# vim: ft=cfg