commit 9f74ec6a667bc532c988a461f25cc75ba2d1a930
parent 90604bfc55c4596ad5b71c7d7b25b76ca5bf138e
Author: Chris <chris@echoz.io>
Date: Fri, 14 Nov 2025 22:53:39 +0100
feat: add zathura
Diffstat:
1 file changed, 21 insertions(+), 0 deletions(-)
diff --git a/modules/zathura/default.nix b/modules/zathura/default.nix
@@ -0,0 +1,21 @@
+{ user, ... }:
+{
+ home-manager.users.${user}.programs.zathura = {
+ enable = true;
+ mappings = {
+ h = "feedkeys <C-Left>";
+ k = "feedkeys <C-Up>";
+ j = "feedkeys <C-Down>";
+ l = "feedkeys <C-Right>";
+ };
+
+ options = {
+ font = "JetBrains Mono Nerd Font Propo 12";
+ default-fg = "rgba(255,255,255,1)";
+ default-bg = "rgba(0,0,0,0.2)";
+ statusbar-bg = "rgba(0,0,0,0)";
+ inputbar-bg = "rgba(0,0,0,0)";
+ completion-bg = "rgba(0,0,0,0)";
+ };
+ };
+}