2021-09-09 21:55:28 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
let
|
|
|
|
base = {
|
|
|
|
programs.zathura = {
|
|
|
|
enable = true;
|
|
|
|
options = {
|
2021-11-04 09:35:16 +01:00
|
|
|
#
|
|
|
|
# Startup Options
|
|
|
|
#
|
2021-09-09 21:55:28 +02:00
|
|
|
recolor = true;
|
2021-11-04 09:35:16 +01:00
|
|
|
adjust-open = "width";
|
|
|
|
|
|
|
|
#
|
|
|
|
# Dracula Theme
|
|
|
|
#
|
2021-09-09 21:55:28 +02:00
|
|
|
completion-bg = "#282a36";
|
|
|
|
completion-fg = "#ff79c6";
|
2021-11-04 09:35:16 +01:00
|
|
|
completion-group-bg = "#282a36";
|
|
|
|
completion-group-fg = "#6272a4";
|
|
|
|
completion-highlight-bg = "#44475a";
|
|
|
|
completion-highlight-fg = "#f8f8f2";
|
|
|
|
|
|
|
|
notification-error-bg = "#ff5555";
|
|
|
|
notification-error-fg = "#f8f8f2";
|
|
|
|
notification-warning-bg = "#ffb86c";
|
|
|
|
notification-warning-fg = "#44475a";
|
|
|
|
notification-bg = "#282a36";
|
|
|
|
notification-fg = "#f8f8f2";
|
|
|
|
|
|
|
|
index-bg = "#282a36";
|
|
|
|
index-fg = "#f8f8f2";
|
|
|
|
index-active-bg = "#44475a";
|
|
|
|
index-active-fg = "#f8f8f2";
|
|
|
|
|
2021-09-09 21:55:28 +02:00
|
|
|
default-bg = "#44475a";
|
|
|
|
default-fg = "#bd93f9";
|
2021-11-04 09:35:16 +01:00
|
|
|
|
2021-09-09 21:55:28 +02:00
|
|
|
inputbar-bg = "#282a36";
|
|
|
|
inputbar-fg = "#8be9fd";
|
|
|
|
statusbar-bg = "#282a36";
|
2021-11-04 09:35:16 +01:00
|
|
|
statusbar-fg = "#f8f8f2";
|
|
|
|
|
|
|
|
#
|
|
|
|
# Recolor settings
|
|
|
|
#
|
2021-09-09 21:55:28 +02:00
|
|
|
recolor-lightcolor = "#282a36";
|
|
|
|
recolor-darkcolor = "#f8f8f2";
|
2021-11-04 09:35:16 +01:00
|
|
|
|
|
|
|
font = "Jetbrains Mono 9";
|
2021-09-09 21:55:28 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2021-10-06 15:35:31 +02:00
|
|
|
in { home-manager.users.moritz = { ... }: (base); }
|