From 7a4727eeaca50b1e036e1d78c6cd47f95bfdb155 Mon Sep 17 00:00:00 2001 From: Yan Lin Date: Thu, 31 Jul 2025 12:37:12 +0200 Subject: [PATCH] Fix pabib alias to use custom BibTeX template MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Change pabib alias to use 'papis list --template' instead of 'papis export' - This ensures the custom BibTeX template is actually used for output 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- modules/papis.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/papis.nix b/modules/papis.nix index 1d6d2d7..a3e30a4 100644 --- a/modules/papis.nix +++ b/modules/papis.nix @@ -70,7 +70,7 @@ pals = "papis list --template \"$HOME/Library/Application Support/papis/templates/bibitem.template\""; # BibTeX export - pabib = "papis export --format bibtex"; + pabib = "papis list --template \"$HOME/Library/Application Support/papis/templates/bibtex.template\""; # File operations paurl = "papis addto -u";