Files
nixos-config/home/programs/zathura.nix
Elias Schröter 35806b21a2 catppuccin theme start
set basic catppuccin/nix
2026-03-17 10:50:17 +01:00

22 lines
480 B
Nix

{ ... }:
# let
# theme = builtins.fetchurl {
# url =
# "https://raw.githubusercontent.com/catppuccin/zathura/main/src/catppuccin-mocha";
# sha256 = "1zhx3bfz5s2wjrj87w0ryh15vgsqqfhg6dm48p63r5fmqwsak721";
# };
# in {
{
programs.zathura = {
enable = true;
options = {
synctex-editor-command = ''
nvim --headless -c "VimtexInverseSearch %l '%f'"
''; # include ${theme}
synctex = true;
font = "Fira Code 16";
};
};
}