nix/programs/zathura.nix (view raw)
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 |
{ config , pkgs , theme , ... }: with theme; { programs.zathura = { enable = true; options = { incremental-search = "true"; recolor = "true"; default-bg = base00; default-fg = base05; completion-bg = base00; completion-fg = base05; completion-highlight-bg = base0E; completion-highlight-fg = base05; statusbar-bg = base00; statusbar-fg = base05; inputbar-bg = base00; inputbar-fg = base05; recolor-darkcolor = base05; recolor-lightcolor = base00; window-height = "800"; window-width = "600"; adjust-open = "width"; smooth-scroll = "true"; statusbar-home-tilde = "true"; statusbar-h-padding = "50"; statusbar-v-padding = "50"; guioptions = "s"; font = "Input 10"; }; }; } |