40 lines
1.1 KiB
Nix
40 lines
1.1 KiB
Nix
|
{ config, fonts, ... }:
|
||
|
{
|
||
|
# TODO add emacs keybinds
|
||
|
programs.zathura =
|
||
|
let
|
||
|
sc = config.scheme.withHashtag;
|
||
|
in
|
||
|
{
|
||
|
enable = true;
|
||
|
options = {
|
||
|
adjust-open = "best-fit";
|
||
|
database = "null";
|
||
|
dbus-service = true;
|
||
|
sandbox = "normal";
|
||
|
scroll-page-aware = true;
|
||
|
synctex = true;
|
||
|
font = "${fonts.monospace.name} ${toString fonts.sizes.applications}";
|
||
|
# Colour scheme
|
||
|
default-bg = sc.base00;
|
||
|
default-fg = sc.base05;
|
||
|
# completion-bg = "";
|
||
|
# completion-fg = "";
|
||
|
# completion-group-bg = "";
|
||
|
# completion-group-fg = "";
|
||
|
# completion-highlight-bg = "";
|
||
|
# completion-highlight-fg = "";
|
||
|
# inputbar-bg = "";
|
||
|
# inputbar-fg = "";
|
||
|
# notification-bg = "";
|
||
|
# notification-fg = "";
|
||
|
# notification-error-bg = "";
|
||
|
# notification-error-fg = "";
|
||
|
# notification-warning-bg = "";
|
||
|
# notification-warning-fg = "";
|
||
|
# statusbar-bg = "";
|
||
|
# statusbar-fg = "";
|
||
|
};
|
||
|
};
|
||
|
}
|