dotfiles

Yes, my $HOME has a git repo now :(

git clone git://git.shimmy1996.com/dotfiles.git
commit 5282c50ce058c0b1cbfabd9abb502ffaf0f84a6e
parent 2d99c6d026638f41f320fdc685be9f258a89b787
Author: Shimmy Xu <shimmy.xu@shimmy1996.com>
Date:   Tue, 22 Jan 2019 08:56:32 -0500

Add color scheme for zathura.

Diffstat:
M.config/zathura/zathurarc | 59+++++++++++++++++++++++++++++++++++++++++++++++++++++------
1 file changed, 53 insertions(+), 6 deletions(-)
diff --git a/.config/zathura/zathurarc b/.config/zathura/zathurarc
@@ -1,6 +1,52 @@
-set highlight-color "#afaf00"
-set recolor-darkcolor "#dab997"
-set recolor-lightcolor "#262626"
-set selection-clipboard clipboard
-set statusbar-home-tilde true
-set window-title-basename true
+set font                        "Iosevka SS09 12"
+
+# Base 16 (gruvbox-dark-pale)
+set completion-bg               "#4e4e4e" #02
+set completion-fg               "#ebdbb2" #07
+
+set completion-group-bg         "#ebdbb2" #0C
+set completion-group-fg         "#262626" #00
+
+set completion-highlight-bg     "#ebdbb2" #07
+set completion-highlight-fg     "#4e4e4e" #02
+
+set default-bg                  "#262626" #00
+set default-fg                  "#dab997" #05
+
+set highlight-active-color      "#ffaf00" #0A
+set highlight-color             "#afaf00" #0B
+
+set index-active-bg             "#afaf00" #0B
+set index-active-fg             "#262626" #00
+
+set index-bg                    "#262626" #00
+set index-fg                    "#dab997" #05
+
+set inputbar-bg                 "#262626" #00
+set inputbar-fg                 "#dab997" #05
+
+set notification-bg             "#afaf00" #0B
+set notification-fg             "#262626" #00
+
+set notification-error-bg       "#d75f5f" #08
+set notification-error-fg       "#262626" #00
+
+set notification-warning-bg     "#ff8700" #09
+set notification-warning-fg     "#262626" #00
+
+set recolor-darkcolor           "#dab997" #05
+set recolor-lightcolor          "#262626" #00
+
+set render-loading-bg           "#262626" #00
+set render-loading-fg           "#dab997" #05
+
+set statusbar-bg                "#dab997" #05
+set statusbar-fg                "#262626" #00
+
+set selection-clipboard         clipboard
+
+set statusbar-home-tilde        true
+set window-title-basename       true
+
+# Show vertical scroll bar
+set guioptions                  v+
\ No newline at end of file