16 lines
275 B
Nix
16 lines
275 B
Nix
|
{ ... }:
|
||
|
{
|
||
|
# TODO add emacs keybinds
|
||
|
programs.zathura = {
|
||
|
enable = true;
|
||
|
options = {
|
||
|
adjust-open = "best-fit";
|
||
|
database = "null";
|
||
|
dbus-service = true;
|
||
|
sandbox = "normal";
|
||
|
scroll-page-aware = true;
|
||
|
synctex = true;
|
||
|
};
|
||
|
};
|
||
|
}
|