From 9d064012ac864a06a5b30ef85f2f171dca9b7274 Mon Sep 17 00:00:00 2001 From: Blake Romero Date: Mon, 9 Dec 2024 17:55:58 +0000 Subject: Add zathura config --- dot-config/zathura/zathurarc | 86 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 86 insertions(+) create mode 100644 dot-config/zathura/zathurarc (limited to 'dot-config/zathura/zathurarc') diff --git a/dot-config/zathura/zathurarc b/dot-config/zathura/zathurarc new file mode 100644 index 0000000..8c79777 --- /dev/null +++ b/dot-config/zathura/zathurarc @@ -0,0 +1,86 @@ +# +# ZATHURARC +# See `man zathurarc` for more info +# + +# MAPPINGS +map j scroll up +map k scroll down +map l scroll left +map ; scroll right + +map [index] j navigate_index up +map [index] k navigate_index down +map [index] l navigate_index left +map [index] ; navigate_index right + +map = zoom in +map - zoom out + +map [ rotate rotate-ccw +map ] rotate rotate-cw + +map w adjust_window width +map h zoom default + +map i toggle_statusbar +map I toggle_index + +map t recolor + +map m toggle_page_mode +map [fullscreen] m toggle_page_mode + +map n navigate next +map p navigate previous + +# SETTINGS +set render-loading false +set statusbar-home-tilde true +set statusbar-page-percent true + +set scroll-page-aware true +set scroll-step 20 + +set statusbar-h-padding 8 +set statusbar-v-padding 5 + +set guioptions "hsv" + +# THEME +set font "Times New Roman 10" +set recolor true +set recolor-keephue true + +set recolor-lightcolor "#000000" +set recolor-darkcolor "#E0E0E0" + +set default-bg "#000000" +set default-fg "#F7F7F6" + +set statusbar-bg "#202020" +set statusbar-fg "#B0B0B0" + +set inputbar-bg "#111111" +set inputbar-fg "#FFFFFF" + +set notification-error-bg "#AC4142" +set notification-error-fg "#151515" + +set notification-warning-bg "#AC4142" +set notification-warning-fg "#151515" + +set highlight-color "#F4BF75" +set highlight-active-color "#6A9FB5" + +set completion-highlight-fg "#151515" +set completion-highlight-bg "#90A959" + +set completion-bg "#303030" +set completion-fg "#E0E0E0" + +set notification-bg "#90A959" +set notification-fg "#151515" + +set index-active-bg "#ffffff" +set index-active-fg "#000000" -- cgit