Signed-off-by: gwg313 <gwg313@pm.me>
This commit is contained in:
gwg313 2025-09-07 13:29:51 -04:00
parent 5f9fb27ebb
commit 120d06ed4d
Signed by: gwg313
GPG key ID: 60FF63B4826B7400
5 changed files with 160 additions and 191 deletions

View file

@ -40,6 +40,7 @@
ts.extensions.ts-error-translator.enable = true;
css.enable = true;
svelte.enable = true;
haskell.enable = true;
html.enable = true;
bash.enable = true;
nix.enable = true;

View file

@ -3,12 +3,17 @@
pkgs,
config,
...
}: {
}:
{
programs.zathura = {
enable = true;
extraConfig = ''
# Open document in fit-width mode by default
set adjust-open "best-fit"
set recolor false # optional: just visual
set synctex true # if using with LaTeX/Typst
set adjust-open width # optional: fit width on open
set continuous true # scroll continuously
'';
};
}