diff options
Diffstat (limited to 'modules/home-manager/zathura.nix')
| -rw-r--r-- | modules/home-manager/zathura.nix | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/modules/home-manager/zathura.nix b/modules/home-manager/zathura.nix deleted file mode 100644 index c8605d0..0000000 --- a/modules/home-manager/zathura.nix +++ /dev/null @@ -1,31 +0,0 @@ -{ - config, - lib, - ... -}: - -{ - options.zathura.enable = lib.mkEnableOption "Enable zathura and setup"; - config = lib.mkIf config.zathura.enable { - programs.zathura = { - enable = true; - options = { - recolor-lightcolor = "rgba(0, 0, 0, 0)"; - recolor-darkcolor = "rgba(255, 255, 255, 1)"; - recolor = true; - adjust-open = "width"; - guioptions = "none"; - zoom-center = true; - page-padding = 0; - pages-per-row = 1; - scroll-page-aware = true; - }; - - mappings = { - i = "recolor"; - j = "navigate previous"; - k = "navigate next"; - }; - }; - }; -} |
