default.nix (504B)
1 { style, user, ... }: 2 { 3 home-manager.users.${user}.programs.zathura = { 4 enable = true; 5 mappings = { 6 h = "feedkeys <C-Left>"; 7 k = "feedkeys <C-Up>"; 8 j = "feedkeys <C-Down>"; 9 l = "feedkeys <C-Right>"; 10 }; 11 12 options = with style; { 13 font = "${fonts.mono.family} 12"; 14 default-fg = colors.fg.rgba; 15 default-bg = colors.bg.rgba; 16 statusbar-bg = colors.bg.rgba; 17 inputbar-bg = colors.bg.rgba; 18 completion-bg = colors.bg.rgba; 19 }; 20 }; 21 }