diff options
| author | Christian <[email protected]> | 2026-07-02 20:54:33 -0500 |
|---|---|---|
| committer | Christian <[email protected]> | 2026-07-02 20:54:33 -0500 |
| commit | 459e0c385b11937d190f3a536d6b9dbbbe9de122 (patch) | |
| tree | fec2e42136361ed668363ad44fa5fbf93e128bea /modules/home/christian.nix | |
| parent | 7e0dbcf06da71e1f39d310bb65677faac4ae057e (diff) | |
Configure zathura with clipboard selection and incremental search
Diffstat (limited to 'modules/home/christian.nix')
| -rw-r--r-- | modules/home/christian.nix | 20 |
1 files changed, 14 insertions, 6 deletions
diff --git a/modules/home/christian.nix b/modules/home/christian.nix index 98112ec..0015de1 100644 --- a/modules/home/christian.nix +++ b/modules/home/christian.nix @@ -25,12 +25,6 @@ xclip hexyl calibre - (pkgs.zathuraPkgs.zathuraWrapper.override { - plugins = with pkgs.zathuraPkgs; [ - zathura_pdf_mupdf - zathura_djvu - ]; - }) ]; programs.alacritty = { @@ -147,6 +141,20 @@ ''; }; + programs.zathura = { + enable = true; + package = pkgs.zathuraPkgs.zathuraWrapper.override { + plugins = with pkgs.zathuraPkgs; [ + zathura_pdf_mupdf + zathura_djvu + ]; + }; + options = { + selection-clipboard = "clipboard"; + incremental-search = true; + }; + }; + programs.home-manager.enable = true; xdg.mimeApps = { |
