dotfiles/modules/apps/zathura.nix

59 lines
1.4 KiB
Nix
Raw Normal View History

2021-09-09 21:55:28 +02:00
{ config, lib, pkgs, ... }:
2021-11-11 18:34:54 +01:00
{
home-manager.users.moritz = {
2021-09-09 21:55:28 +02:00
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";
2021-11-15 15:58:49 +01:00
render-loading = true;
render-loading-fg = "#282a36";
render-loading-bg = "#f8f8f2";
2021-11-04 09:35:16 +01:00
#
# 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-11-11 18:34:54 +01:00
}